(PECL proctitle >= 0.1.0)
setproctitle — Set the process title
$title
) : voidSets the process title of the current process.
title
The title to use as the process title.
No value is returned.
Example #1 setproctitle() example
Running the example below will change the process title (visible with ps a for example).
<?php
setproctitle("myscript");
?>
The above example will output something similar to:
$ ps a PID TTY STAT TIME COMMAND 1168 pts/3 S 0:00 myscript