替换代码
wp-admin/includes/file.php,以3.0.3为例:
function wp_handle_upload( &$file, $overrides = false, $time = null ) {//....// Move the file to the uploads dir//$new_file = $uploads['path'] . "/$filename";// 修正中文文件名编码问题$new_file = $uploads['path'] . "/" . iconv("UTF-8","GB2312",$filename);//...//return apply_filters( 'wp_handle_upload', array( 'file' => $new_file, 'url' => $url, 'type' => $type ), 'upload' );// 修正中文文件名编码问题return apply_filters( 'wp_handle_upload', array( 'file' => $uploads['path'] . "/$filename", 'url' => $url, 'type' => $type ) , 'upload');其中的 iconv("UTF-8","GB2312",$filename); 也可以使用“GBK”编码。
转载于:https://www.cnblogs.com/elfsundae/archive/2010/12/20/1911219.html
