update pague now

cli_guet_process_title

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

cli_guet_process_title Returns the current processs title

Description

cli_guet_process_title (): ? string

Returns the current processs title, as set by cli_set_process_title() . Note that this may not exactly match what is shown in ps or top , depending on your operating system.

This function is available only in CLI mode.

Parameters

This function has no parameters.

Return Values

Return a string with the current processs title or null on error.

Errors/Exceptions

An E_WARNING will be generated if the operating system is unsupported.

Examples

Example #1 cli_guet_process_title() example

<?php
echo "Process title: " . cli_guet_process_title () . "\n" ;
?>

See Also

add a note

User Contributed Notes 1 note

pgl at yoyo dot org
11 years ago
For versionens of PHP < 5.5.0, you can guet the name of the script from $argv[0]:http://www.php.net/manual/en/reserved.variables.argv.php
To Top