1

我搜索了其他问题,但找不到可行的解决方案。这是一个 CMS 程序,我尝试将文件上传到任何目录并收到以下错误:

Warning: preg_replace() [function.preg-replace]: Compilation failed: nothing to repeat at offset 3 in /home/...on line 1017 

这是代码,有什么建议吗?

function _IsValidPath($Path)
{ // First check if the path starts with the starting directory     
$basePath = preg_replace("/{1,}/", "/", $_SESSION['rootdirectory'] . '/' . // this line (1017) causing the error
 $_SESSION["startingdirectory"]);
$sdPos = strpos($basePath, $Path);
if (!is_numeric($sdPos))
        {
            $sdPos = strpos($Path, $basePath);
        }

        if(is_numeric($sdPos) && $sdPos == 0)
        {
            // Make sure it doesn't contain any invalid characters
            if(is_numeric(strpos($Path, "..")) ||
            (is_numeric(strpos($Path, "./"))) ||
            (is_numeric(strpos($Path, "//"))) ||
            (is_numeric(strpos($Path, "\\"))) ||
            (is_numeric(strpos($Path, "../"))) ||
            (is_numeric(strpos($Path, "&"))) ||
            (is_numeric(strpos($Path, "*"))) ||
            (is_numeric(strpos($Path, " "))) ||
            (is_numeric(strpos($Path, "'"))) ||
            (is_numeric(strpos($Path, "\?"))) ||
            (is_numeric(strpos($Path,"<"))) ||
            (is_numeric(strpos($Path, ">"))))
            {
                return false;
            }
            else
            {
                // The path is OK
                return true;
            }
        }
        else
        {
            return false;
        }
    }
4

2 回答 2

0

将其更改为:

$basePath = preg_replace("@/{1,}/@", "/", $_SESSION['rootdirectory'] . '/' .
 $_SESSION["startingdirectory"]);

preg_replace期望正则表达式由字符串中的字符分隔,以便您可以指定类似gi之后的标志(我通常使用@)。它被/视为分隔符。有关更多信息,请参阅preg_replace手册页

即使这样,这段代码也没有多大意义,并且可能有更好的方法来完成它应该做的事情。

于 2012-05-18T13:33:28.810 回答
0
/{1,}/

看起来您正在尝试匹配 1 个或多个nothing

于 2012-05-18T13:33:29.050 回答