(PECL proctitle >= 0.1.2)
setthreadtitle — Set the thread title
$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