Proctitle Funzioni
PHP Manual

setproctitle

(PECL proctitle >= 0.1.0)

setproctitleSet the process title

Descrizione

void setproctitle ( string $title )

Sets the process title of the current process.

Elenco dei parametri

title

The title to use as the process title.

Valori restituiti

Nessun valore viene restituito.

Esempi

Example #1 setproctitle() example

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

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

Il precedente esempio visualizzerĂ  qualcosa simile a:

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

Vedere anche:


Proctitle Funzioni
PHP Manual