gpt4 book ai didi

php - 为什么超时不工作linux服务器

转载 作者:太空宇宙 更新时间:2023-11-04 04:07:40 25 4
gpt4 key购买 nike

我有一个可执行文件,我想使用超时来运行它。我使用的是linux服务器和php。以下是我正在使用的代码

exec("timeout 2s ./exe < input > output");

它只是生成没有内容的输出文件。但如果我删除超时如下:

exec("./exe < input > output");

然后它会在我的输出文件中显示预期的输出。

为什么会发生这种情况。我是否以正确的方式使用超时?如何解决?

最佳答案

尝试按以下方式更改命令:

exec("timeout 2s ./exe < input > output 2>&1");

可能是 timeout 不在 PATH 上。

关于php - 为什么超时不工作linux服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20504931/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com