gpt4 book ai didi

php 奇怪的 file_exists 错误

转载 作者:可可西里 更新时间:2023-11-01 00:11:22 27 4
gpt4 key购买 nike

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

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

echo 'Yes its there.';

问题出在空格上。我检查了文件是否存在,dbl 检查 n 三重检查我快疯了。 :(

帮助

最佳答案

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

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

关于php 奇怪的 file_exists 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4315541/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com