file_exists()
は、提供する画像がhttps://www.google.pl/logos/2012/haring-12-hp.png
の場合でもfalseを返します。どうして?私は、ローカルホスト上で発射する準備ができて、完全な失敗のPHPコードを提示していますfile_exists()はファイルが存在してもfalseを返します。(リモートURL)
下:PHP 5.0.0のよう
$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";
}
だから、あなたはGoogleを持っていますか? 'ファイルまたはディレクトリが存在するかどうかを確認します.'ローカルのみ。 – Blake