2

我正在构建一个返回字符串的类,该字符串将自动包含文件夹中的文件,有点像 HTML 文件的加载器。

这是将被调用的方法:

function build_external_file_include($_dir){
    $_files = scandir($_dir);
    $_stack_of_file_includes = "";//will store the includes for the specified file.
foreach ($_files as $ext){
    //split the file name into two;
    $fileName = explode('.',$ext, 1);//this is where the issue is.

    switch ($fileName[1]){
        case "js":
            //if file is javascript
             $_stack_of_file_includes =  $_stack_of_file_includes."<script type='text/javascript' src='".$dir.'/'.   $ext ."'></script>";

            break;
        case "css";//if file is css
             $_stack_of_file_includes =  $_stack_of_file_includes."<link rel=\"stylesheet\" type=\"text/css\" href=\"".$dir.'/'. $ext."\" />";
            break;
        default://if file type is unkown
             $_stack_of_file_includes =  $_stack_of_file_includes."<!-- File: ".  $ext." was not included-->";
    }


}
return $_stack_of_file_includes;
}

所以,这运行没有任何错误。但是,它没有做它应该做的事情……或者至少我打算做的事情。这里从技术上讲,

$fileName[1]应该是扩展js

$fileName[0]应该是文件名main

$fileName[0]main.js

爆不认.

先感谢您。

4

2 回答 2

6

您正在强制生成的数组具有 1 个元素,这会导致它具有整个文件名。

explode( '.', $ext, 1 )

应该改为

explode( '.', $ext );

证明:http ://codepad.org/01DLpo6H

于 2012-05-03T04:35:27.980 回答
0

您已将爆炸限制为产生1 个数组条目,因此它永远无法执行任何操作:

print_r(explode('.', 'a.b', 1));
Array
(
    [0] => a.b
)

限制应该至少为 2。或者,更好的是,您应该使用pathinfo()函数,它可以为您正确处理文件名组件。

于 2012-05-03T04:35:32.123 回答