到目前爲止,這是我的,但它似乎並不奏效......PHP讀取文件,並檢查是否某些字符串存在
<?
$file = fopen('wiu.dat','r')
while (wui = fgets($file)){
if ($wui = 'True') {
header("Location: index.html");
die()
} else {
echo"<h2>Down for maintenance.</h2>"
;}}
fclose($fh);
?>
任何反饋,將不勝感激
wiu.dat文件的內容是什麼?還編輯'if($ wui =='True')'語句。 – C1sc0
可以肯定的是,在你死前(()),我可能會犯錯。 – Glubus
在'while(wui')中缺少'$',如果這是你的實際代碼,錯誤報告的說法是「undefined constant wui ...」 –