taoshihan
if (function_exists(\'cli_set_process_title\')) {
    cli_set_process_title("superman php master process");
} // Need proctitle when php<=5.5 .
elseif (extension_loaded(\'proctitle\') && function_exists(\'setproctitle\')) {
    setproctitle("superman php master process");
} 

一般是在用php做多进程处理时可能会用到

 

 

分类:

技术点:

相关文章:

  • 2021-06-02
  • 2021-06-15
  • 2021-09-12
  • 2021-09-25
  • 2021-06-19
  • 2021-12-10
  • 2021-11-03
猜你喜欢
  • 2021-11-14
  • 2021-06-19
  • 2021-07-11
  • 2021-08-08
  • 2021-05-11
  • 2021-08-07
相关资源
相似解决方案