setthreadtitle
(PECL proctitle >= 0.1.2)
setthreadtitle — Set 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
참고
- pcntl_fork() - Forks the currently running process
- setproctitle() - Set the process title
There are no user contributed notes for this page.
