引用符が一致しません。このコードを試してください。
$playerfileLocation = "../wp-content/gallery/playerphotos/" . $playerid . ".jpg";
if(file_exists($playerfileLocation))
echo "The file File exists";
else
echo "The file File does not exist";
更新: PHPは、二重引用符を見るたびに、それはこの場合には必要とされていない、それの間に何かを解析しようとして、実際に私は、コードの下に使用することをお勧めします。これはパフォーマンスの小さな最適化です。ファイルが存在する場合にも
$playerfileLocation = '../wp-content/gallery/playerphotos/' . $playerid . '.jpg';
if(file_exists($playerfileLocation))
echo "The file File exists";
else
echo "The file File does not exist";
は、単にチェックすると表示されない場合は、デフォルトの画像は、次のコードを使用し
$playerfileLocation = '../wp-content/gallery/playerphotos/' . $playerid . '.jpg';
$defaultfileLocation = '../wp-content/gallery/playerphotos/default.jpg';
if (!file_exists($playerfileLocation)) {
$playerfileLocation = $defaultfileLocation;
}
が働いて、この相対パスですか? –
いいえ...ページがif文に到達すると停止します。この「テスト」の下に表示されないテキストが表示されます。 – DoubleA