我使用 Apache 作为服务器,我的 index.php 代码是
<?php session_start(); ?>
<html>
<my HTML code>
<?php
wait_file:{
// Do something to receive file.
}
else
{
goto wait_file;
}
}
detect_file:{
if(file_exists($file))
{
// do something with received file.
}
else
{
goto detect_file;
}
}
?>
</html>
但是当我访问 index.php 时,网页总是在加载,并且我的背景图片没有显示(这可能意味着 HTML 代码不起作用),我认为关键是我使用了“goto”,做了 if-循环等待文件,但我不知道如何解决它。