我的代码有问题。它返回错误。我在这里搜索并尝试了一些类似的问题,但没有一个有帮助。无论如何,我在这里使用 cPanel。而且我确定该文件确实存在,因此具有文件夹名称。希望你能帮我解决这个问题。提前致谢。
<?php
$filename = 'event-01.jpg';
if ( file_exists( $_SERVER{'/home2/user/public_html'} . "/MyProject/events/event-01.jpg")) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>
我也试过
$filename = 'event-01';
if (!file_exists('http://mysite.com/MyProject/events/event-01.jpg')) {
echo "The file $filename doesn't exist";
}