php 奇怪的 file_exists 错误

发布于 2024-10-05 01:11:18 字数 221 浏览 6 评论 0原文

有谁知道为什么以下不起作用?

$file = 'images/thumbs/1%20-%20Copy.jpg';
if(!file_exists($file)){
 die('NOT THERE');  
}

echo 'Yes its there.';

问题出在空间上。我已经检查了该文件是否存在,dbl 检查了三次,我快疯了。 :(

帮助

Has anyone got any idea to why doesn't the following work ?

$file = 'images/thumbs/1%20-%20Copy.jpg';
if(!file_exists($file)){
 die('NOT THERE');  
}

echo 'Yes its there.';

The problem is with the spaces. I have checked the file exists,dbl checked n triple checked im going nuts. :(

Help

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

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

发布评论

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

评论(3

友谊不毕业 2024-10-12 01:11:24

试试这两个

$file = 'images/thumbs/1\ -\ Copy.jpg';
$file = 'images/thumbs/1 - Copy.jpg';

try these two

$file = 'images/thumbs/1\ -\ Copy.jpg';
$file = 'images/thumbs/1 - Copy.jpg';
神仙妹妹 2024-10-12 01:11:23
$file = rawurldecode('images/thumbs/1%20-%20Copy.jpg');
$file = rawurldecode('images/thumbs/1%20-%20Copy.jpg');
寂寞美少年 2024-10-12 01:11:21

file_exists 在文件系统上工作,而不是通过 HTTP。因此 %20 不会被识别为空格,而是字面上的 %20;使用空格代替:

$file = 'images/thumbs/1 - Copy.jpg';

file_exists works on the file system and not via HTTP. So %20 will not be recognized as space but literally as %20; use spaces instead:

$file = 'images/thumbs/1 - Copy.jpg';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文