php查看进程

六月ゝ 毕业季﹏ 提交于 2020-04-24 08:12:05
 

 index.php

<?php
/**
 * Created by PhpStorm.
 * User: mac
 * Date: 2020/4/23
 * Time: 21:57
 */

echo posix_getpid();
while(true)
{
	sleep(1);
}

php index.php

mac@macdeMacBook-Pro:/www/learn_lumen/wang$     php index.php 
47976

 

查看进程号ID

mac@macdeMacBook-Pro:/www/learn_lumen/wang$     ps -ef|grep index.php
  501 47976 89607   0 10:01下午 ttys000    0:00.07 php index.php
  501 47986 90454   0 10:02下午 ttys002    0:00.00 grep index.php
mac@macdeMacBook-Pro:/www/learn_lumen/wang$

 查看父进程ID

<?php
/**
 * Created by PhpStorm.
 * User: mac
 * Date: 2020/4/23
 * Time: 21:57
 */

echo posix_getpid().PHP_EOL;
echo posix_getppid();
while(true)
{
	sleep(1);
}

 

mac@macdeMacBook-Pro:/www/learn_lumen/wang$     php index.php 
48015
89607

 

mac@macdeMacBook-Pro:/www/learn_lumen/wang$     ps -ef|grep index.php
  501 48015 89607   0 10:03下午 ttys000    0:00.08 php index.php
  501 48018 90454   0 10:03下午 ttys002    0:00.00 grep index.php
mac@macdeMacBook-Pro:/www/learn_lumen/wang$

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!