标签 Directory Lister 下的文章

Directory Lister 中文不显示修复

Directory Lister 2.7.1 当文件或者文件夹第一个字符是中文的时候,就不显示,第一个名字是数字、英文或者符号的时候,后面的中文会显示。

编辑 resources/DirectoryLister.php 第 633 行,把这段代码:

$directoryArray[pathinfo($relativePath, PATHINFO_BASENAME)] = array(

改成

preg_match('/\/([^\/]*)$/', $relativePath, $matches);$pathname = isset($matches[1]) ? $matches[1] : $relativePath;$directoryArray[$pathname] = array(