setthreadtitle
(PECL proctitle >= 0.1.2)
setthreadtitle — Set 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).
<?php
setthreadtitle("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