0

这是我的代码,但它永远不会返回 true。

    $image = $_FILES['image'];

    $filename = $image['name'];
    $filepathname = "/$membername/"."$filename";

    if (file_exists($filepathname)) {
       throw new Exception('Image already exists');
    }
4

1 回答 1

0

“$membername”是否包含 $_SERVER['DOCUMENT_ROOT'] 路径?

阅读更多 @ PHP 的 file_exists() 对我不起作用?

(如果它确实包含 $_SERVER['DOCUMENT_ROOT'] 那么您可能需要检查文件权限 - 假设您使用的是 LAMP)

于 2012-09-27T02:02:37.347 回答