file_exists()
確認する画像が存在する場合でも、Myは false を返しますhttps://www.google.pl/logos/2012/haring-12-hp.png
。なんで?
以下に、localhost で起動する準備ができている失敗した完全な PHP コードを示します。
$filename = 'https://www.google.pl/logos/2012/haring-12-hp.png';
echo "<img src=" . $filename . " />";
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}