Php/docs/function.setthreadtitle

来自菜鸟教程
跳转至:导航、​搜索

setthreadtitle

(PECL proctitle >= 0.1.2)

setthreadtitleSet the thread title


说明

setthreadtitle ( string $title ) : bool

Sets the thread title.


参数

title
The title to use as the thread title.


返回值

成功时返回 true, 或者在失败时返回 false


范例

Example #1 setthreadtitle() example

Running the example below will change the thread title (visible with ps c for example).


<?phpsetthreadtitle("myscript");?>

以上例程的输出类似于:


$ ps c
  PID TTY      STAT   TIME COMMAND
 1178 pts/3    S      0:00 myscript

参见

  • pcntl_fork() - 在当前进程当前位置产生分支(子进程)。译注:fork是创建了一个子进程,父进程和子进程 都从fork的位置开始向下继续执行,不同的是父进程执行过程中,得到的fork返回值为子进程 号,而子进程得到的是0。
  • setproctitle() - Set the process title