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

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top