cli_get_process_title
(PHP 5 >= 5.5.0, PHP 7, PHP 8)
cli_get_process_title — Returns the current process title
Descrizione
This function is available only in
CLI mode.
Elenco dei parametri
Questa funzione non contiene parametri.
Valori restituiti
Return a string with the current process title or null on error.
Errori/Eccezioni
An E_WARNING will be generated if the operating system
is unsupported.
Esempi
Example #1 cli_get_process_title() example
<?php
echo "Process title: " . cli_get_process_title() . "\n";
?>