file_exists() 返回 false,即使路径确实存在

发布于 2024-12-23 18:13:32 字数 518 浏览 2 评论 0原文

好的程序员们,我想在新年之前解决这个问题。我只想显示存在的照片,否则使用默认照片。这是我的代码,

<?php 
    $photolocation = '../wp-content/gallery/playerphotos/Joe Smith.jpg';
    if (!file_exists($photolocation))
    {
        echo "File exists";
    }
    else
    {
        echo "File does not exist";
    }
?>

当我将 photolocation 更改为:

$photolocation = '../wp-content/gallery/playerphotos/XXX Smith.jpg'; 时,它总是正确返回“文件存在”

我错误地得到“文件存在”。

我不明白为什么条件 !file_exists 总是返回正值。

OK programmers, I'd like to figure this one out before the New Year. I want to display a photo only if it exists, otherwise use a default photo. Here is my code that always correctly returns "File Exists"

<?php 
    $photolocation = '../wp-content/gallery/playerphotos/Joe Smith.jpg';
    if (!file_exists($photolocation))
    {
        echo "File exists";
    }
    else
    {
        echo "File does not exist";
    }
?>

When I change the photolocation to:

$photolocation = '../wp-content/gallery/playerphotos/XXX Smith.jpg';

I incorrectly get "File exists".

I can't figure out why the condition !file_exists always returns a positive value.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゝ偶尔ゞ 2024-12-30 18:13:32

那应该是:

<?php 
    $photolocation = '../wp-content/gallery/playerphotos/XXX Smith.jpg';

    if (file_exists($photolocation))
    {
        echo "File exists";
    }
    else
    {
        echo "File does not exist";
    }
?>

That should be:

<?php 
    $photolocation = '../wp-content/gallery/playerphotos/XXX Smith.jpg';

    if (file_exists($photolocation))
    {
        echo "File exists";
    }
    else
    {
        echo "File does not exist";
    }
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文