如何减少 SSH2 "loading" 时间

How to reduce SSH2 "loading" time

我正在使用 phpseclib 通过 SSH2 在我的 unix 服务器上执行命令,该命令只是执行 ctrl + c(退出脚本,我真的不知道怎么说,抱歉) 大约 15 秒后,所以当我想在 PHP 中执行 file_get_contents("api.php?param=test"); 时,页面在大约 15 秒内加载(它在脚本 finish/done 后完成加载)。

所以我想执行命令,后面直接写成"ok"之类的。我不想要这个加载时间。

PS:我就是这样做的:https://hastebin.com/hoyulazeha.xml

对不起,我不是英国人。 在此先感谢您的帮助。

我在 $ssh -> exec($command); 之前添加了 $ssh -> setTimeout(1);,它在 1 秒后停止加载,脚本正确执行。