Difference between revisions of "PHP/CLI"
< PHP
Jump to navigation
Jump to search
(more stuff that's relevant) |
|||
Line 9: | Line 9: | ||
Other: | Other: | ||
* <code>[https://www.php.net/manual/en/function.getopt.php getopt()]</code> parses individual arguments in a standard way | * <code>[https://www.php.net/manual/en/function.getopt.php getopt()]</code> parses individual arguments in a standard way | ||
+ | ** Note that this ignores any options listed after non-options. | ||
* <code>[https://www.php.net/manual/en/function.cli-get-process-title.php cli_get_process_title()]</code> | * <code>[https://www.php.net/manual/en/function.cli-get-process-title.php cli_get_process_title()]</code> | ||
* <code>[https://www.php.net/manual/en/function.cli-set-process-title.php cli_set_process_title()]</code> | * <code>[https://www.php.net/manual/en/function.cli-set-process-title.php cli_set_process_title()]</code> |
Revision as of 00:32, 18 June 2022
Although PHP is most commonly used to write web applications, it can also be used for scripts that run from a command line interface (CLI). The CLI environment is a little different than the web environment, and PHP's current documentation doesn't make it easy to locate the relevant pieces.
Functionality
Predefined variables:
$argc
contains the number of arguments passed to the current script$argv[]
contains an array of all the arguments passed to the script$argv[0]
is always the name that was used to run the script.
Other:
getopt()
parses individual arguments in a standard way- Note that this ignores any options listed after non-options.
cli_get_process_title()
cli_set_process_title()
glob()
is the interface to the system's file-globbing function