作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试用 PHP 编写在线法官。我的代码目前看起来像:
exec("gcc /var/www/qwerty.c -o /var/www/binary",$output,$returnval);
print_r($output);
exec("cat /var/www/qwe.txt | /var/www/binary",$output,$returnval);
print_r($output);
但是,我希望 exec
产生的每个进程最多有 1 秒的运行时间。我不知道该怎么做。set_time_limit() 不工作
最佳答案
我会使用 proc_
按照@Adam Wright 的建议运行,但是类 Linux 环境的快速替代方法是在命令之前使用 GNU timeout
命令:
// If it took more than 1 second, $returnval will got the exit code 124
exec('timeout 1 gcc /var/www/qwerty.c -o /var/www/binary', $output, $returnval);
关于php - 如何对 `exec()` 的调用施加时间限制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9128938/
我是一名优秀的程序员,十分优秀!