为什么file_exists()php函数看不到文件夹?

时间:2019-04-08 09:40:49

标签: php file directory host file-exists

我现在正在论坛上上传文件。我在文件夹“ public_html”中创建了文件夹“ upload”,该文件夹位于用于论坛的主机上。 当我尝试检查是否有在html input元素中选择的文件名具有名称的文件时,isimg.php总是说没有此类文件,即使有。

//$name - processed name of file, like it was on computer
$url = '/upload/'."$name";
echo"$url<br>";
if (!file_exists($url)){
    echo"no ex";
}else{
    echo"ex";
}

0 个答案:

没有答案