如果这样写就会无法保存
if($_GET['act'] == "555"){
$response = file_get_contents("./5555.json");
} else if($_GET['act'] == "444"){
$response = file_get_contents("./4444.json");
} else if($_GET['act'] == "333"){
$response = file_get_contents("./3333.json");
} else if($_GET['act'] == "222"){
$response = file_get_contents("./2222.json");
} else if($_GET['act'] == "111"){
$response = file_get_contents("./1111.json");
} |