summaryrefslogtreecommitdiff
path: root/sapi/cli
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/cli')
-rw-r--r--sapi/cli/php.1.in29
-rw-r--r--sapi/cli/php_cli.c2
2 files changed, 29 insertions, 2 deletions
diff --git a/sapi/cli/php.1.in b/sapi/cli/php.1.in
index c800e127f..c1fcb27e5 100644
--- a/sapi/cli/php.1.in
+++ b/sapi/cli/php.1.in
@@ -1,6 +1,5 @@
.TH PHP 1 "2010" "The PHP Group" "Scripting Language"
.SH NAME
-.TP 15
php \- PHP Command Line Interface 'CLI'
.SH SYNOPSIS
.B php
@@ -95,6 +94,34 @@ get executed. When readline support is enabled you can edit the lines and also
have history support.
.TP
.PD 0
+.B \-\-bindpath \fIaddress:port\fP|\fIport\fP
+.TP
+.PD 1
+.B \-b \fIaddress:port\fP|\fIport\fP
+Bind Path for external FASTCGI Server mode (CGI only).
+.TP
+.PD 0
+.B \-\-no\-chdir
+.TP
+.PD 1
+.B \-C
+Do not chdir to the script's directory (CGI only).
+.TP
+.PD 0
+.B \-\-no\-header
+.TP
+.PD 1
+.B \-q
+Quiet-mode. Suppress HTTP header output (CGI only).
+.TP
+.PD 0
+.B \-\-timing \fIcount\fP
+.TP
+.PD 1
+.B \-T \fIcount\fP
+Measure execution time of script repeated count times (CGI only).
+.TP
+.PD 0
.B \-\-php\-ini \fIpath\fP|\fIfile\fP
.TP
.PD 1
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c
index 2b372906b..cdc3ecf4a 100644
--- a/sapi/cli/php_cli.c
+++ b/sapi/cli/php_cli.c
@@ -20,7 +20,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_cli.c 293036 2010-01-03 09:23:27Z sebastian $ */
+/* $Id: php_cli.c 300854 2010-06-29 11:37:13Z felipe $ */
#include "php.h"
#include "php_globals.h"