function get_pathFiles($path='')
{
if( empty($path) ) return FALSE;
$tmpPath = '.' . trim($path, '.');
if( !file_exists($tmpPath) || !$files = scandir($tmpPath) ) return FALSE;
array_splice($files, 0, 2);
return $files ? $files : array();
}
为什么页面显示的中文图片名称会出现乱码
编码不一致吧,UTF-8 GBK之间需要注意和转换
数据库和tp入口都设置utf8了的
@喂,别走。。。!: 是否文件名本身存在问题,如系统的编码是GBK的
可以在这些步骤中间插入日志,看下是在哪里乱的