Proctitle 函数
PHP Manual

setthreadtitle

(PECL proctitle >= 0.1.2)

setthreadtitleSet the thread title

说明

bool setthreadtitle ( string $title )

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

参见


Proctitle 函数
PHP Manual