diff options
author | Jan Lehnardt <jan@php.net> | 2002-10-25 09:32:32 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@php.net> | 2002-10-25 09:32:32 +0000 |
commit | e431d6a1c977d9f24b1ffe44ac450c342ca4fd99 (patch) | |
tree | 1b687a490aa03ff5f8b11e65d0c0aaad3e39d933 /sapi | |
parent | ed29169f91b5c0e6e89aca5e4bc4fa3ed578c1f6 (diff) | |
download | php-git-e431d6a1c977d9f24b1ffe44ac450c342ca4fd99.tar.gz |
- alphabetical output for php -h (cli)
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/cli/php_cli.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index a652052100..c96d2d56a3 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -262,20 +262,20 @@ static void php_cli_usage(char *argv0) php_printf( "Usage: %s [options] [-f] <file> [args...]\n" " %s [options] -r <code> [args...]\n" " %s [options] [-- args...]\n" - " -s Display colour syntax highlighted source.\n" - " -w Display source with stripped comments and whitespace.\n" - " -f <file> Parse <file>.\n" - " -v Version number\n" - " -c <path>|<file> Look for php.ini file in this directory\n" " -a Run interactively\n" + " -c <path>|<file> Look for php.ini file in this directory\n" " -d foo[=bar] Define INI entry foo with value 'bar'\n" " -e Generate extended information for debugger/profiler\n" - " -z <file> Load Zend extension <file>.\n" + " -f <file> Parse <file>.\n" + " -h This help\n" + " -i PHP information\n" " -l Syntax check only (lint)\n" " -m Show compiled in modules\n" - " -i PHP information\n" " -r <code> Run PHP <code> without using script tags <?..?>\n" - " -h This help\n" + " -s Display colour syntax highlighted source.\n" + " -v Version number\n" + " -w Display source with stripped comments and whitespace.\n" + " -z <file> Load Zend extension <file>.\n" "\n" " args... Arguments passed to script. Use -- args when first argument \n" " starts with - or script is read from stdin\n" |