1

我在这一行收到一个错误:

$ret=array_merge($ret,preg_ls($path."/".$e,$rec,$pat));

错误是:array_merge() 参数 #2 不是数组

我不知道如何解决这个问题。

谢谢你。

function preg_ls($path=".", $rec=false, $pat="/.*/") {
    // it's going to be used repeatedly, ensure we compile it for speed.
    $pat=preg_replace("|(/.*/[^S]*)|s", "\\1S", $pat);
    //echo($pat);
    //Remove trailing slashes from path
    while (substr($path,-1,1)=="/") $path=substr($path,0,-1);
    //also, make sure that $path is a directory and repair any screwups
    if (!is_dir($path)) $path=dirname($path);
    //assert either truth or falsehoold of $rec, allow no scalars to mean truth
    if ($rec!==true) $rec=false;
    //get a directory handle
    $d=dir($path);
    //initialise the output array
    $ret=Array();
    //loop, reading until there's no more to read
    while (false!==($e=$d->read())) {
        //Ignore parent- and self-links
        if (($e==".")||($e=="..")) continue;
        //If we're working recursively and it's a directory, grab and merge
        if ($rec && is_dir($path."/".$e)) {
            $ret=array_merge($ret,preg_ls($path."/".$e,$rec,$pat));
            continue;
        }
        //If it don't match, exclude it
        if (!preg_match($pat,$e)) continue;
        //In all other cases, add it to the output array
        //echo($path."/".$e."<br/>");
        $ret[]=$path."/".$e;
    }
    //finally, return the array
    echo json_encode($ret);
}
4

1 回答 1

6

PHP 中的 anArray不是 JSON。这是一个数组。简单地return $ret;

如果您期望一个数组,而不是字符串(如json_encode给出的那样),则应该返回该数组。

另外,您使用的是echo,而不是returnecho根据 PHP 环境打印到其中一个stdout或 HTML 正文(尽管它们是相同的,只是使用重定向和不同的环境来处理它)。

return将导致函数按预期将其返回值传递给调用者(通常传递给变量或另一个函数);没有返回值,函数将始终返回NULL

于 2013-04-01T21:22:26.753 回答