嗨,我正在尝试从 cmd 执行一个 php 脚本,其中包含通过 GET 请求提供的一些数据,但由于某种原因我无法让它等待命令完成。代码是。
<?php
error_reporting(0);
file_put_contents("query.txt", $_GET['query']);
exec("php loop1.php");
$result=file_get_contents("result.html");
echo $result;
?>
loop1 的代码太复杂了,不是问题的重点。