PHP下利用shell后台运行PHP脚本,并获取该脚本的Process ID的代码

Judith ·
更新时间:2024-11-13
· 535 次阅读

代码如下:
$command = '/usr/bin/php /pub/www/u111/job/Crondo/auto_collector.php &';
$process = proc_open($command, array(),$pipes);
$var = proc_get_status($process);
proc_close($process);
//pid就是进程ID,至于为什么要加1,我现在也没有搞懂,经过多次的测试,发现$var['pid']得到的ID比实际的少1
$pid = intval($var['pid'])+1;
//杀死进程
proc_close(proc_open('kill -9 '.$pid, array(), $pipes));
您可能感兴趣的文章:叫你如何修改Nginx与PHP的文件上传大小限制PHP+FastCGI+Nginx配置PHP运行环境PHP统计nginx访问日志中的搜索引擎抓取404链接页面路径实现Nginx中使用PHP-FPM时记录PHP错误日志的配置方法php调用shell的方法PHP中exec函数和shell_exec函数的区别用PHP和Shell写Hadoop的MapReduce程序监控服务器swap并重启php的Shell脚本解决php接收shell返回的结果中文乱码问题解析php中如何直接执行SHELLPHP教程之PHP中shell脚本的使用方法分享php管理nginx虚拟主机shell脚本实例



process id shell PHP

需要 登录 后方可回复, 如果你还没有账号请 注册新账号