Ref/proctitle-Phpdoc专题
setproctitle
Set the process title
说明
void <span
class="methodname">setproctitle ( <span
class="type">string $title )
Sets the process title of the current process.
参数
title
The title to use as the process title.
返回值
没有返回值。
范例
示例 #1 setproctitle example
Running the example below will change the process title (visible with ps a for example).
<?php
setproctitle("myscript");
?>
以上例程的输出类似于:
$ ps a
PID TTY STAT TIME COMMAND
1168 pts/3 S 0:00 myscript
参见
- cli_set_process_title
- pcntl_fork
- setthreadtitle
setthreadtitle
Set the thread title
说明
bool <span
class="methodname">setthreadtitle ( <span
class="methodparam">string $title )
Sets the thread title.
参数
title
The title to use as the thread title.
返回值
成功时返回 true, 或者在失败时返回 false。
范例
示例 #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
- setproctitle
目录
- setproctitle — Set the process title
- setthreadtitle — Set the thread title