file_exists() 返回 false,即使路径确实存在
好的程序员们,我想在新年之前解决这个问题。我只想显示存在的照片,否则使用默认照片。这是我的代码,
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那应该是:
That should be: