Proctitle Funções
PHP Manual

setproctitle

(PECL proctitle >= 0.1.0)

setproctitleSet the process title

Descrição

void setproctitle ( string $title )

Sets the process title of the current process.

Parâmetros

title

The title to use as the process title.

Valor Retornado

Não há valor retornado.

Exemplos

Exemplo #1 setproctitle() example

Running the example below will change the process title (visible with ps a for example).

<?php
setproctitle
("myscript");
?>

O exemplo acima irá imprimir algo similar à:

$ ps a
  PID TTY      STAT   TIME COMMAND
 1168 pts/3    S      0:00 myscript                                                                                                                         

Veja Também


Proctitle Funções
PHP Manual