php查看進程


 

 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$ 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM