我的更奇葩!宝塔面板文件在线编辑,如果php在判断是时这样写的话,会直接无法保存,直接502
if($_GET['act'] == "555"){
$response = file_get_contents("./5555.json");
} else if($_GET['act'] == "444"){
$response = file_get_contents("./4444.json");
}
会直接无法保存,一直转圈圈!过一会就会显示超时。
然后要改成
$act = $_GET["act"];
if($act == "333"){
$response = file_get_contents("./3333.json");
} else if($act == "222"){
$response = file_get_contents("./2222.json");
} |