我有来自jQuery File Tree PHP Connector的这个PHP代码
这个jQuery文件树更新了dir中的所有文件,可以看到
中的所有内容jQueryFileTree的链接Here
这段代码中的好消息是文件中有UTF-8的特殊字符 但坏消息是它不适用于文件夹有特殊字符
当我点击文件中的普通文件夹时有特殊字符= 工作,我可以看到所有文件
当我点击文件夹时,在files =中有特殊字符 不工作,我看不到任何文件
<?php
//
// jQuery File Tree PHP Connector
//
// Version 1.01
//
// Cory S.N. LaViska
// A Beautiful Site (http://abeautifulsite.net/)
// 24 March 2008
//
// History:
//
// 1.01 - updated to work with foreign characters in directory/file names (12 April 2008)
// 1.00 - released (24 March 2008)
//
// Output a list of files for jQuery File Tree
//
$_POST['dir'] = rawurldecode((isset($_POST['dir']) ? $_POST['dir'] : null ));
if( file_exists($_POST['dir']) ) {
$files = scandir($_POST['dir']);
natcasesort($files);
if( count($files) > 2 ) { /* The 2 accounts for . and .. */
echo "<ul class=\"jqueryFileTree\" style=\"display: none;\">";
foreach( $files as $file ) {
$Path = $_POST['dir'] . $file;
if(!file_exists($Path) || $file == '.' || $file == '..') {
continue;
}
//The following lines will take care of character encoding of special characters on a windows server.
//Since special characters (é for example) are not displayed correctly when a file containing this character is found on a windows server.
//The windows-1252 encoding returned by scandir() does not display correctly in HTML, so we need to convert it to UTF-8
//See http://stackoverflow.com/questions/22660797/ for full details
//WARNING: If you have a script running (instead of directly linking to files) to send your scripts, you have to run a reverse encoding conversion over the string passed by jQueryFileTree
//Use the following line to revert the encoding conversion:
// $FilePath = iconv(mb_detect_encoding($FilePath),"WINDOWS-1252",$FilePath);
$file = iconv(mb_detect_encoding($file,array("WINDOWS-1252","UTF-8"),true),'UTF-8',$file);
$Dir = iconv(mb_detect_encoding($_POST['dir'],array("WINDOWS-1252","UTF-8"),true),'UTF-8',$_POST['dir']);
$RelString = htmlentities($Dir.$file);
if(is_dir($Path)) {
//Handle directories
echo "<li class=\"directory collapsed\"><a href=\"javascript:void(0);\" rel=\"{$RelString}/\">" . htmlentities($file) . "</a></li>";
}
else {
//Handle files
$ext = preg_replace('/^.*\./', '', $file);
echo "<li class=\"file ext_$ext\"><a href=\"javascript:void(0);\" rel=\"{$RelString}\">" . htmlentities($file) . "</a></li>";
}
}
echo "</ul>";
}
}
?>
答案 0 :(得分:0)
我发现的解决方法是使用base64编码完整路径
因此rel =应该包含base64_encode($ Dir。$ File)
当然,在服务器端,您必须执行base64_decode
有了这个,任何字符编码都不再存在问题
尽管必须在jqueryFileTree.js文件中更改第72行
showTree( $(this).parent(), escape($(this).attr('rel').match( /.*\// )) );
成为
showTree( $(this).parent(), $(this).attr('rel') );