私はこのコードを持っていて、そこにバグがありますが、どこが間違っているのかわかりません。誰か助けてもらえますか?問題は、テキストファイルの内容に対応するように特定の画像を表示しようとしていることです。私はその部分を並べ替えたと思いますが、画像の表示に関しては常にバグがあります(たとえば、ifステートメントがotherwizeと言っている場合でも常に緑色です。コードは次のとおりです。
<?php
if (empty($_GET['unit'])) {
$output="Please Enter A Unit Number";
echo $output;
}
else {
$filepathhalf = "/data/";
$file = "false";
$date = date("Ymd");
$unitnum = $_GET['unit'];
$ext = ".txt";
$filepath = $filepathhalf.$unitnum.$date.$ext;
echo $filepath;
echo $file;
if(file_exists($filepath))
{
$fh = fopen($filepath, 'r');
$file = fread($fh, 5);
fclose($fh);
}
echo $file; //This echo comes back as false as set but the green.png image still displays.
if ($file = "true ")
{
echo "<img src=\"images/green.png\" width=\"15\" height=\"15\" />";
}
else
{
echo "<img src=\"images/red.png\" width=\"15\" height=\"15\" />";
}
echo $_GET['unit'];
}
?>