diff options
author | Edin Kadribasic <edink@php.net> | 2002-02-14 16:45:07 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2002-02-14 16:45:07 +0000 |
commit | 48f688a261e0dc1d2fcbb418090ce9b8b6de9399 (patch) | |
tree | 428d5c9d59db953d9880d2ce3dc93b9f65114d9c /sapi/cli/php_cli.c | |
parent | f47a9c8af300e6637f7b88425c50952d69313e05 (diff) | |
download | php-git-48f688a261e0dc1d2fcbb418090ce9b8b6de9399.tar.gz |
Turned implicit_flush on.
Cleaned up help text.
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 37f61a69fb..4bcb0e3357 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -239,13 +239,11 @@ static void php_cli_usage(char *argv0) prog = "php"; } - php_printf("Usage: %s [-q] [-h] [-s [-v] [-i] [-f <file>] | {<file> [args...]}\n" - " -q Quiet-mode. Suppress HTTP Header output.\n" + php_printf("Usage: %s [-h] [-s] [-v] [-i] [-f <file>] | {<file> [args...]}\n" " -s Display colour syntax highlighted source.\n" " -w Display source with stripped comments and whitespace.\n" - " -f <file> Parse <file>. Implies `-q'\n" + " -f <file> Parse <file>.\n" " -v Version number\n" - " -C Do not chdir to the script's directory\n" " -c <path> Look for php.ini file in this directory\n" " -a Run interactively\n" " -d foo[=bar] Define INI entry foo with value 'bar'\n" @@ -254,7 +252,7 @@ static void php_cli_usage(char *argv0) " -l Syntax check only (lint)\n" " -m Show compiled in modules\n" " -i PHP information\n" - " -h This help\n", prog); + " -h This help\n", prog); } /* }}} */ @@ -386,6 +384,7 @@ int main(int argc, char *argv[]) /* Set some CLI defaults */ SG(options) |= SAPI_OPTION_NO_CHDIR; zend_alter_ini_entry("html_errors", 12, "0", 1, PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE); + zend_alter_ini_entry("implicit_flush", 15, "1", 1, PHP_INI_SYSTEM, PHP_INI_STAGE_ACTIVATE); while ((c = ap_php_getopt(argc, argv, OPTSTRING)) != -1) { switch (c) { |