當我使用以下PHP代碼時;PHP file_exists else
<?php if (file_exists("/foto/Maurice.jpg"))
{
echo "<center><img src='/foto/Maurice.jpg'/></center>";
}
else {
echo "<center><img src='/afbeeldingen/kaars1.png'/></center>";
?>
我的瀏覽器總是顯示kaars1.png
而不是Maurice.jpg
我也試過!file_exists
但當時它並不顯示kaars1.png
,當Maurice.jpg
不存在。 有沒有解決這個問題的方法?
'file_exists'是*僅*爲您的服務器的(本地)文件系統中的文件。 –
可能的重複[如何檢查一個遠程文件是否存在使用PHP?](http://stackoverflow.com/questions/981954/how-can-one-check-to-see-if-a-remote -file-exists-using-php) –
給出'file_exist'中的完整路徑。(你的映像存在的完整路徑) –