summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLior Kaplan <kaplanlior@gmail.com>2013-07-06 14:44:15 +0300
committerStanislav Malyshev <stas@php.net>2013-07-14 17:00:56 -0700
commitf4b9b20b354c059d7246a250953e73365558f5e6 (patch)
treedba77e2798217a0357b270c4868c8d6545e741a1
parentbcef0ebc2d30fb7ac763f2b0354b96852d9c87d6 (diff)
downloadphp-git-f4b9b20b354c059d7246a250953e73365558f5e6.tar.gz
Add built-in web server to invocation list
-rw-r--r--sapi/cli/php_cli.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c
index c01f3705b5..aa300ce88d 100644
--- a/sapi/cli/php_cli.c
+++ b/sapi/cli/php_cli.c
@@ -498,6 +498,7 @@ static void php_cli_usage(char *argv0)
" %s [options] -r <code> [--] [args...]\n"
" %s [options] [-B <begin_code>] -R <code> [-E <end_code>] [--] [args...]\n"
" %s [options] [-B <begin_code>] -F <file> [-E <end_code>] [--] [args...]\n"
+ " %s [options] -S <addr>:<port> [-t docroot]\n"
" %s [options] -- [args...]\n"
" %s [options] -a\n"
"\n"
@@ -539,7 +540,7 @@ static void php_cli_usage(char *argv0)
" --rz <name> Show information about Zend extension <name>.\n"
" --ri <name> Show configuration for extension <name>.\n"
"\n"
- , prog, prog, prog, prog, prog, prog);
+ , prog, prog, prog, prog, prog, prog, prog);
}
/* }}} */