196963
From c940aab7895fa4cb109e7790ae14080090b04959 Mon Sep 17 00:00:00 2001
196963
From: Remi Collet <remi@php.net>
196963
Date: Tue, 2 Jul 2013 10:42:47 +0200
196963
Subject: [PATCH] Fixed Bug #65143 Missing php-cgi man page
196963
196963
Currently php-cgi man page is a simple redirect to
196963
php (CLI) man page.
196963
196963
Could be splited / improved in the future.
196963
---
196963
 sapi/cgi/Makefile.frag | 3 +++
196963
 sapi/cgi/config9.m4    | 2 ++
196963
 sapi/cgi/php-cgi.1.in  | 1 +
196963
 sapi/cli/php.1.in      | 2 ++
196963
 4 files changed, 8 insertions(+)
196963
 create mode 100644 sapi/cgi/php-cgi.1.in
196963
196963
diff --git a/sapi/cgi/Makefile.frag b/sapi/cgi/Makefile.frag
196963
index 505119e..d54dd40 100644
196963
--- a/sapi/cgi/Makefile.frag
196963
+++ b/sapi/cgi/Makefile.frag
196963
@@ -6,4 +6,7 @@ $(SAPI_CGI_PATH): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_CGI_OBJS)
196963
 install-cgi: $(SAPI_CGI_PATH)
196963
 	@echo "Installing PHP CGI binary:        $(INSTALL_ROOT)$(bindir)/"
196963
 	@$(INSTALL) -m 0755 $(SAPI_CGI_PATH) $(INSTALL_ROOT)$(bindir)/$(program_prefix)php-cgi$(program_suffix)$(EXEEXT)
196963
+	@echo "Installing PHP CGI man page:      $(INSTALL_ROOT)$(mandir)/man1/"
196963
+	@$(mkinstalldirs) $(INSTALL_ROOT)$(mandir)/man1
196963
+	@$(INSTALL_DATA) sapi/cgi/php-cgi.1 $(INSTALL_ROOT)$(mandir)/man1/$(program_prefix)php-cgi$(program_suffix).1
196963
 
196963
diff --git a/sapi/cgi/config9.m4 b/sapi/cgi/config9.m4
196963
index 67251ae..49e61c8 100644
196963
--- a/sapi/cgi/config9.m4
196963
+++ b/sapi/cgi/config9.m4
196963
@@ -71,6 +71,8 @@ if test "$PHP_CGI" != "no"; then
196963
     dnl Expose to Makefile
196963
     PHP_SUBST(SAPI_CGI_PATH)
196963
     PHP_SUBST(BUILD_CGI)
196963
+
196963
+    PHP_OUTPUT(sapi/cgi/php-cgi.1)
196963
 else
196963
   AC_MSG_RESULT(yes)
196963
 fi
196963
diff --git a/sapi/cgi/php-cgi.1.in b/sapi/cgi/php-cgi.1.in
196963
new file mode 100644
196963
index 0000000..340e6c5
196963
--- /dev/null
196963
+++ b/sapi/cgi/php-cgi.1.in
196963
@@ -0,0 +1 @@
196963
+.so man1/php.1
196963
diff --git a/sapi/cli/php.1.in b/sapi/cli/php.1.in
196963
index 0e9d07a..6f0266d 100644
196963
--- a/sapi/cli/php.1.in
196963
+++ b/sapi/cli/php.1.in
196963
@@ -1,6 +1,8 @@
196963
 .TH PHP 1 "2013" "The PHP Group" "Scripting Language"
196963
 .SH NAME
196963
 php \- PHP Command Line Interface 'CLI'
196963
+.P
196963
+php-cgi \- PHP Command Gateway Interface 'CGI'
196963
 .SH SYNOPSIS
196963
 .B php
196963
 [options] [
196963
-- 
196963
1.7.11.5
196963
196963
From f4ce5e7fb65ce215ea5fd182a90aaa4d634f6023 Mon Sep 17 00:00:00 2001
196963
From: Remi Collet <remi@php.net>
196963
Date: Tue, 2 Jul 2013 10:46:50 +0200
196963
Subject: [PATCH] Fixed Bug #65142 Missing phar man page
196963
196963
Simple man page from phar help output.
196963
---
196963
 NEWS                    |   3 +
196963
 ext/phar/Makefile.frag  |   4 +
196963
 ext/phar/config.m4      |   2 +
196963
 ext/phar/phar.1.in      | 523 ++++++++++++++++++++++++++++++++++++++++++++++++
196963
 ext/phar/phar.phar.1.in |   1 +
196963
 5 files changed, 533 insertions(+)
196963
 create mode 100644 ext/phar/phar.1.in
196963
 create mode 100644 ext/phar/phar.phar.1.in
196963
196963
diff --git a/ext/phar/Makefile.frag b/ext/phar/Makefile.frag
196963
index b1c820f..ed6de9f 100644
196963
--- a/ext/phar/Makefile.frag
196963
+++ b/ext/phar/Makefile.frag
196963
@@ -40,3 +40,7 @@ install-pharcmd: pharcmd
196963
 	$(INSTALL) $(builddir)/phar.phar $(INSTALL_ROOT)$(bindir)
196963
 	-@rm -f $(INSTALL_ROOT)$(bindir)/phar
196963
 	$(LN_S) -f $(bindir)/phar.phar $(INSTALL_ROOT)$(bindir)/phar
196963
+	@$(mkinstalldirs) $(INSTALL_ROOT)$(mandir)/man1
196963
+	@$(INSTALL_DATA) $(builddir)/phar.1 $(INSTALL_ROOT)$(mandir)/man1/phar.1
196963
+	@$(INSTALL_DATA) $(builddir)/phar.phar.1 $(INSTALL_ROOT)$(mandir)/man1/phar.phar.1
196963
+
196963
diff --git a/ext/phar/config.m4 b/ext/phar/config.m4
196963
index 2ac7f3d..d424060 100644
196963
--- a/ext/phar/config.m4
196963
+++ b/ext/phar/config.m4
196963
@@ -27,4 +27,6 @@ if test "$PHP_PHAR" != "no"; then
196963
   PHP_ADD_EXTENSION_DEP(phar, hash, true)
196963
   PHP_ADD_EXTENSION_DEP(phar, spl, true)
196963
   PHP_ADD_MAKEFILE_FRAGMENT
196963
+
196963
+  PHP_OUTPUT(ext/phar/phar.1 ext/phar/phar.phar.1)
196963
 fi
196963
diff --git a/ext/phar/phar.1.in b/ext/phar/phar.1.in
196963
new file mode 100644
196963
index 0000000..259a2ba
196963
--- /dev/null
196963
+++ b/ext/phar/phar.1.in
196963
@@ -0,0 +1,523 @@
196963
+.TH PHAR 1 "2013" "The PHP Group" "User Commands"
196963
+.SH NAME
196963
+phar, phar.phar \- PHAR (PHP archive) command line tool
196963
+.SH SYNOPSIS
196963
+.B phar
196963
+<command> [options] ...
196963
+.LP
196963
+.SH DESCRIPTION
196963
+The \fBPHAR\fP file format provides a way to put entire PHP applications into a single
196963
+file called a "phar" (PHP Archive) for easy distribution and installation.
196963
+.P
196963
+With the \fBphar\fP command you can create, update or extract PHP archives.
196963
+.P
196963
+Commands: 
196963
+add compress delete extract help help-list info list meta-del
196963
+meta-get meta-set pack sign stub-get stub-set tree version
196963
+
196963
+.SH add command
196963
+Add entries to a PHAR package.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.TP
196963
+.PD
196963
+.B ...
196963
+Any number of input files and directories. If -i is in
196963
+use then ONLY files and matching the given regular
196963
+expression are being packed. If -x is given then files
196963
+matching that regular expression are NOT being packed.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B \-a \fIalias\fP
196963
+Provide an \fIalias\fP name for the phar file.
196963
+.TP
196963
+.PD
196963
+.B \-c \fIalgo\fP
196963
+Compression algorithm (see 
196963
+.SM
196963
+.B COMPRESSION
196963
+)
196963
+.TP
196963
+.PD
196963
+.B \-i \fIregex\fP
196963
+Specifies a regular expression for input files.
196963
+.TP
196963
+.PD
196963
+.B \-l \fIlevel\fP
196963
+Number of preceding subdirectories to strip from file entries
196963
+.TP
196963
+.PD
196963
+.B \-x \fIregex\fP
196963
+Regular expression for input files to exclude.
196963
+
196963
+.SH compress command
196963
+Compress or uncompress all files or a selected entry.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B \-c \fIalgo\fP
196963
+Compression algorithm (see 
196963
+.SM
196963
+.B COMPRESSION
196963
+)
196963
+.TP
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -e \fIentry\fP
196963
+Name of \fIentry\fP to work on (must include PHAR internal
196963
+directory name if any).
196963
+
196963
+.SH delete command
196963
+Delete entry from a PHAR archive
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B \-e \fIentry\fP
196963
+Name of \fIentry\fP to work on (must include PHAR internal
196963
+directory name if any).
196963
+.TP
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+
196963
+.SH extract command
196963
+Extract a PHAR package to a directory.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -i \fIregex\fP
196963
+Specifies a regular expression for input files.
196963
+.TP
196963
+.PD
196963
+.B -x \fIregex\fP
196963
+Regular expression for input files to exclude.
196963
+.TP
196963
+.PD
196963
+.B ...
196963
+Directory to extract to (defaults to '.').
196963
+
196963
+
196963
+.SH help command
196963
+This help or help for a selected command.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B ...
196963
+Optional command to retrieve help for.
196963
+
196963
+.SH help-list command
196963
+Lists available commands.
196963
+
196963
+.SH info command
196963
+Get information about a PHAR package.
196963
+.P
196963
+By using -k it is possible to return a single value.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -k \fIindex\fP
196963
+Subscription \fIindex\fP to work on.
196963
+
196963
+.SH list command
196963
+List contents of a PHAR archive.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -i \fIregex\fP
196963
+Specifies a regular expression for input files.
196963
+.TP
196963
+.PD
196963
+.B -x \fIregex\fP
196963
+Regular expression for input files to exclude.
196963
+
196963
+
196963
+.SH meta-del command
196963
+Delete meta information of a PHAR entry or a PHAR package.
196963
+.P
196963
+If -k is given then the metadata is expected to be an array and the
196963
+given index is being deleted.
196963
+.P
196963
+If something was deleted the return value is 0 otherwise it is 1.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -e \fIentry\fP
196963
+Name of \fIentry\fP to work on (must include PHAR internal
196963
+directory name if any).
196963
+.TP
196963
+.PD
196963
+.B -k \fIindex\fP
196963
+Subscription \fIindex\fP to work on.
196963
+
196963
+.SH meta-get command
196963
+Get meta information of a PHAR entry or a PHAR package in serialized from. If
196963
+no output file is specified for meta data then stdout is being used.
196963
+You can also specify a particular index using -k. In that case the
196963
+metadata is expected to be an array and the value of the given index
196963
+is returned using echo rather than using serialize. If that index does
196963
+not exist or no meta data is present then the return value is 1.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -e \fIentry\fP
196963
+Name of \fIentry\fP to work on (must include PHAR internal
196963
+directory name if any).
196963
+.TP
196963
+.PD
196963
+.B -k \fIindex\fP
196963
+Subscription \fIindex\fP to work on.
196963
+
196963
+.SH meta-set command
196963
+Set meta data of a PHAR entry or a PHAR package using serialized input. If no
196963
+input file is specified for meta data then stdin is being used. You can
196963
+also specify a particular index using -k. In that case the metadata is
196963
+expected to be an array and the value of the given index is being set.
196963
+If the metadata is not present or empty a new array will be created.
196963
+If the metadata is present and a flat value then the return value is
196963
+1. Also using -k the input is been taken directly rather then being
196963
+serialized.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.TP
196963
+.PD
196963
+.B -m \fImeta\fP
196963
+Meta data to store with entry (serialized php data).
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -e \fIentry\fP
196963
+Name of \fIentry\fP to work on (must include PHAR internal
196963
+directory name if any).
196963
+.TP
196963
+.PD
196963
+.B -k \fIindex\fP
196963
+Subscription \fIindex\fP to work on.
196963
+
196963
+.SH pack command
196963
+Pack files into a PHAR archive.
196963
+.P
196963
+When using -s <stub>, then the stub file is being excluded from the
196963
+list of input files/dirs.To create an archive that contains PEAR class
196963
+PHP_Archive then point -p argument to PHP/Archive.php.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.TP
196963
+.PD
196963
+.B ...
196963
+Any number of input files and directories. If -i is in
196963
+use then ONLY files and matching the given regular
196963
+expression are being packed. If -x is given then files
196963
+matching that regular expression are NOT being packed.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B \-a \fIalias\fP
196963
+Provide an \fIalias\fP name for the phar file.
196963
+.TP
196963
+.PD
196963
+.B \-b \fIbang\fP
196963
+Hash-bang line to start the archive (e.g. #!/usr/bin/php).
196963
+The hash mark itself '#!' and the newline character are optional.
196963
+.TP
196963
+.PD
196963
+.B \-c \fIalgo\fP
196963
+Compression algorithm (see 
196963
+.SM
196963
+.B COMPRESSION
196963
+)
196963
+.TP
196963
+.PD
196963
+.B \-h \fIhash\fP
196963
+Selects the \fIhash\fP algorithm (see 
196963
+.SM
196963
+.B HASH
196963
+)
196963
+.TP
196963
+.PD
196963
+.B \-i \fIregex\fP
196963
+Specifies a regular expression for input files.
196963
+.TP
196963
+.PD
196963
+.B \-l \fIlevel\fP
196963
+Number of preceding subdirectories to strip from file entries
196963
+.TP
196963
+.PD
196963
+.B \-p \fIloader\fP
196963
+Location of PHP_Archive class file (pear list-files
196963
+PHP_Archive).You can use '0' or '1' to locate it
196963
+automatically using the mentioned pear command. When
196963
+using '0' the command does not error out when the class
196963
+file cannot be located. This switch also adds some code
196963
+around the stub so that class PHP_Archive gets
196963
+registered as phar:// stream wrapper if necessary. And
196963
+finally this switch will add the file phar.inc from
196963
+this package and load it to ensure class Phar is
196963
+present.
196963
+.TP
196963
+.PD
196963
+.B \-s \fIstub\fP
196963
+Select the \fIstub\fP file.
196963
+.TP
196963
+.PD
196963
+.B \-x \fIregex\fP
196963
+Regular expression for input files to exclude.
196963
+.TP
196963
+.PD
196963
+.B \-y \fIkey\fP
196963
+Private \fIkey\fP for OpenSSL signing.
196963
+
196963
+.SH sign command
196963
+Set signature hash algorithm.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.TP
196963
+.PD
196963
+.B \-h \fIhash\fP
196963
+Selects the \fIhash\fP algorithm (see 
196963
+.SM
196963
+.B HASH
196963
+)
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B \-y \fIkey\fP
196963
+Private \fIkey\fP for OpenSSL signing.
196963
+
196963
+.SH stub-get command
196963
+Get the stub of a PHAR file. If no output file is specified as stub then stdout
196963
+is being used.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B \-s \fIstub\fP
196963
+Select the \fIstub\fP file.
196963
+
196963
+.SH stub-set command
196963
+Set the stub of a PHAR file. If no input file is specified as stub then stdin
196963
+is being used.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B \-b \fIbang\fP
196963
+Hash-bang line to start the archive (e.g. #!/usr/bin/php).
196963
+The hash mark itself '#!' and the newline character are optional.
196963
+.TP
196963
+.PD
196963
+.B \-p \fIloader\fP
196963
+Location of PHP_Archive class file (pear list-files
196963
+PHP_Archive).You can use '0' or '1' to locate it
196963
+automatically using the mentioned pear command. When
196963
+using '0' the command does not error out when the class
196963
+file cannot be located. This switch also adds some code
196963
+around the stub so that class PHP_Archive gets
196963
+registered as phar:// stream wrapper if necessary. And
196963
+finally this switch will add the file phar.inc from
196963
+this package and load it to ensure class Phar is
196963
+present.
196963
+.TP
196963
+.PD
196963
+.B \-s \fIstub\fP
196963
+Select the \fIstub\fP file.
196963
+
196963
+
196963
+.SH tree command
196963
+Get a directory tree for a PHAR archive.
196963
+.P
196963
+Required arguments:
196963
+.TP 15
196963
+.PD
196963
+.B -f \fIfile\fP
196963
+Specifies the phar \fIfile\fP to work on.
196963
+.P
196963
+Optional arguments:
196963
+.TP 15
196963
+.PD
196963
+.B \-i \fIregex\fP
196963
+Specifies a regular expression for input files.
196963
+.TP
196963
+.PD
196963
+.B \-x \fIregex\fP
196963
+Regular expression for input files to exclude.
196963
+
196963
+.SH version command
196963
+Get information about the PHAR environment and the tool version.
196963
+
196963
+
196963
+.SH COMPRESSION
196963
+Algorithms:
196963
+.TP 15
196963
+.PD
196963
+.B 0
196963
+No compression
196963
+.TP
196963
+.PD
196963
+.B none
196963
+No compression
196963
+.TP
196963
+.PD
196963
+.B auto
196963
+Automatically select compression algorithm
196963
+.TP
196963
+.PD
196963
+.B gz
196963
+GZip compression
196963
+.TP
196963
+.PD
196963
+.B gzip
196963
+GZip compression
196963
+.TP
196963
+.PD
196963
+.B bz2
196963
+BZip2 compression
196963
+.TP
196963
+.PD
196963
+.B bzip2
196963
+BZip2 compression
196963
+
196963
+.SH HASH
196963
+Algorithms:
196963
+.TP 15
196963
+.PD
196963
+.TP
196963
+.PD
196963
+.B md5
196963
+MD5
196963
+.TP
196963
+.PD
196963
+.B sha1
196963
+SHA1
196963
+.TP
196963
+.PD
196963
+.B sha256
196963
+SHA256
196963
+.TP
196963
+.PD
196963
+.B sha512
196963
+SHA512
196963
+.TP
196963
+.PD
196963
+.B openssl
196963
+OpenSSL
196963
+
196963
+.SH SEE ALSO
196963
+For a more or less complete description of PHAR look here:
196963
+.PD 0
196963
+.P
196963
+.B http://php.net/phar
196963
+.PD 1
196963
+.P
196963
+.SH BUGS
196963
+You can view the list of known bugs or report any new bug you
196963
+found at:
196963
+.PD 0
196963
+.P
196963
+.B http://bugs.php.net
196963
+.PD 1
196963
+.SH AUTHORS
196963
+The PHP Group: Thies C. Arntzen, Stig Bakken, Andi Gutmans, Rasmus Lerdorf, Sam Ruby, Sascha Schumann, Zeev Suraski, Jim Winstead, Andrei Zmievski.
196963
+.P
196963
+Work for the PHP archive was done by Gregory Beaver, Marcus Boerger.
196963
+.P
196963
+A List of active developers can be found here:
196963
+.PD 0
196963
+.P
196963
+.B http://www.php.net/credits.php
196963
+.PD 1
196963
+.P
196963
+And last but not least PHP was developed with the help of a huge amount of 
196963
+contributors all around the world.
196963
+.SH VERSION INFORMATION
196963
+This manpage describes \fBphar\fP, version @PHP_VERSION@.
196963
+.SH COPYRIGHT
196963
+Copyright \(co 1997\-2013 The PHP Group
196963
+.LP
196963
+This source file is subject to version 3.01 of the PHP license,
196963
+that is bundled with this package in the file LICENSE, and is
196963
+available through the world-wide-web at the following url:
196963
+.PD 0
196963
+.P
196963
+.B http://www.php.net/license/3_01.txt
196963
+.PD 1
196963
+.P
196963
+If you did not receive a copy of the PHP license and are unable to
196963
+obtain it through the world-wide-web, please send a note to
196963
+.B license@php.net
196963
+so we can mail you a copy immediately.
196963
diff --git a/ext/phar/phar.phar.1.in b/ext/phar/phar.phar.1.in
196963
new file mode 100644
196963
index 0000000..b5eecbf
196963
--- /dev/null
196963
+++ b/ext/phar/phar.phar.1.in
196963
@@ -0,0 +1 @@
196963
+.so man1/phar.1
196963
-- 
196963
1.7.11.5
196963
196963
From 67817a199ca4c8bcff163cb005287c0087db6bf3 Mon Sep 17 00:00:00 2001
196963
From: Remi Collet <remi@php.net>
196963
Date: Tue, 2 Jul 2013 12:19:09 +0200
196963
Subject: [PATCH] fix typo in php man page
196963
196963
---
196963
 sapi/cli/php.1.in | 2 +-
196963
 1 file changed, 1 insertion(+), 1 deletion(-)
196963
196963
diff --git a/sapi/cli/php.1.in b/sapi/cli/php.1.in
196963
index 6f0266d..749baa8 100644
196963
--- a/sapi/cli/php.1.in
196963
+++ b/sapi/cli/php.1.in
196963
@@ -2,7 +2,7 @@
196963
 .SH NAME
196963
 php \- PHP Command Line Interface 'CLI'
196963
 .P
196963
-php-cgi \- PHP Command Gateway Interface 'CGI'
196963
+php-cgi \- PHP Common Gateway Interface 'CGI' command
196963
 .SH SYNOPSIS
196963
 .B php
196963
 [options] [
196963
-- 
196963
1.7.11.5
196963