iconv("gb2312","utf-8//IGNORE",$data)使用也不行我的函数是这样function readDirectory($path) { // $path = iconv("GB2312", "utf-8//IGNORE", $path); $handle = @ opendir($path); while(($item=readdir($handle))!==false) { $item=iconv("GB2312", "utf-8//IGNORE", $item); if ($item!='.' && $item!='..') { if(is_file($path.'/'.$item)) { $arr['file'][]=$item; } if(is_dir($path.'/'.$item)) { $arr['dir'][]=$item; } } } closedir($handle); return $arr; }
添加回答
举报
0/150
提交
取消