$file = "status.txt";
$open = fopen($file, "r");
$size = filesize($file);
$count = fread($open, $size);
if($count == 1) {
header('Location: http://www.google.com/');
} else {
echo "Status is unavailable";
}
您好,我正在尝试读取文本文件。
执行此操作时出现错误Parse error: syntax error, unexpected T_STRING
。
我正在尝试读取 status.txt,如果它有 1 它将重定向,否则它会说 Status 不可用。
有任何想法吗?