File manager - Edit - /home/newsbmcs.com/public_html/static/img/logo/man1.zip
Back
PK ���Z-��� pecl.1nu �[��� .so man1/pear.1 PK ���Z=�ɳ$ �$ php8.0.1nu �[��� .TH php 1 "2021" "The PHP Group" "Scripting Language" .SH NAME php \- PHP Command Line Interface 'CLI' .P php-cgi \- PHP Common Gateway Interface 'CGI' command .SH SYNOPSIS .B php [options] [ .B \-f\fP ] .IR file [[\-\-] .IR args.\|.\|. ] .LP .B php [options] .B \-r .IR code [[\-\-] .IR args.\|.\|. ] .LP .B php [options] [\-B .IR begin_code ] .B \-R .IR code [\-E .IR end_code ] [[\-\-] .IR args.\|.\|. ] .LP .B php [options] [\-B .IR begin_code ] .B \-F .IR file [\-E .IR end_code ] [[\-\-] .IR args.\|.\|. ] .LP .B php [options] \-\- [ .IR args.\|.\|. ] .LP \fBphp \fP[options] \fB\-a\fP .LP .B php [options] \-S .IR addr:port [\-t .IR docroot ] .LP .SH DESCRIPTION \fBPHP\fP is a widely\-used general\-purpose scripting language that is especially suited for Web development and can be embedded into HTML. This is the command line interface that enables you to do the following: .P You can parse and execute files by using parameter \-f followed by the name of the .IR file to be executed. .LP Using parameter \-r you can directly execute PHP .IR code simply as you would do inside a .B \.php file when using the .B eval() function. .LP It is also possible to process the standard input line by line using either the parameter \-R or \-F. In this mode each separate input line causes the .IR code specified by \-R or the .IR file specified by \-F to be executed. You can access the input line by \fB$argn\fP. While processing the input lines .B $argi contains the number of the actual line being processed. Further more the parameters \-B and \-E can be used to execute .IR code (see \-r) before and after all input lines have been processed respectively. Notice that the input is read from .B STDIN and therefore reading from .B STDIN explicitly changes the next input line or skips input lines. .LP PHP also contains an built-in web server for application development purpose. By using the \-S option where .B addr:port point to a local address and port PHP will listen to HTTP requests on that address and port and serve files from the current working directory or the .B docroot passed by the \-t option. .LP If none of \-r \-f \-B \-R \-F \-E or \-S is present but a single parameter is given then this parameter is taken as the filename to parse and execute (same as with \-f). If no parameter is present then the standard input is read and executed. .SH OPTIONS .TP 15 .PD 0 .B \-\-interactive .TP .PD 1 .B \-a Run PHP interactively. This lets you enter snippets of PHP code that directly 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 .B \-c \fIpath\fP|\fIfile\fP Look for .B php.ini file in the directory .IR path or use the specified .IR file .TP .PD 0 .B \-\-no\-php\-ini .TP .PD 1 .B \-n No .B php.ini file will be used .TP .PD 0 .B \-\-define \fIfoo\fP[=\fIbar\fP] .TP .PD 1 .B \-d \fIfoo\fP[=\fIbar\fP] Define INI entry .IR foo with value .IR bar .TP .B \-e Generate extended information for debugger/profiler .TP .PD 0 .B \-\-file \fIfile\fP .TP .PD 1 .B \-f \fIfile\fP Parse and execute .IR file .TP .PD 0 .B \-\-help .TP .PD 1 .B \-h This help .TP .PD 0 .B \-\-hide\-args .TP .PD 1 .B \-H Hide script name (\fIfile\fP) and parameters (\fIargs\.\.\.\fP) from external tools. For example you may want to use this when a php script is started as a daemon and the command line contains sensitive data such as passwords. .TP .PD 0 .B \-\-info .TP .PD 1 .B \-i PHP information and configuration .TP .PD 0 .B \-\-syntax\-check .TP .PD 1 .B \-l Syntax check only (lint) .TP .PD 0 .B \-\-modules .TP .PD 1 .B \-m Show compiled in modules .TP .PD 0 .B \-\-run \fIcode\fP .TP .PD 1 .B \-r \fIcode\fP Run PHP .IR code without using script tags .B '<?..?>' .TP .PD 0 .B \-\-process\-begin \fIcode\fP .TP .PD 1 .B \-B \fIbegin_code\fP Run PHP .IR begin_code before processing input lines .TP .PD 0 .B \-\-process\-code \fIcode\fP .TP .PD 1 .B \-R \fIcode\fP Run PHP .IR code for every input line .TP .PD 0 .B \-\-process\-file \fIfile\fP .TP .PD 1 .B \-F \fIfile\fP Parse and execute .IR file for every input line .TP .PD 0 .B \-\-process\-end \fIcode\fP .TP .PD 1 .B \-E \fIend_code\fP Run PHP .IR end_code after processing all input lines .TP .PD 0 .B \-\-syntax\-highlight .TP .PD 1 .B \-s Output HTML syntax highlighted source .TP .PD 0 .B \-\-server \fIaddr:port\fP .TP .PD 1 .B \-S \fIaddr:port\fP Start built-in web server on the given local address and port .TP .PD 0 .B \-\-docroot \fIdocroot\fP .TP .PD 1 .B \-t \fIdocroot\fP Specify the document root to be used by the built-in web server .TP .PD 0 .B \-\-version .TP .PD 1 .B \-v Version number .TP .PD 0 .B \-\-strip .TP .PD 1 .B \-w Output source with stripped comments and whitespace .TP .PD 0 .B \-\-zend\-extension \fIfile\fP .TP .PD 1 .B \-z \fIfile\fP Load Zend extension .IR file .TP .IR args.\|.\|. Arguments passed to script. Use .B '\-\-' .IR args when first argument starts with .B '\-' or script is read from stdin .TP .PD 0 .B \-\-rfunction .IR name .TP .PD 1 .B \-\-rf .IR name Shows information about function .B name .TP .PD 0 .B \-\-rclass .IR name .TP .PD 1 .B \-\-rc .IR name Shows information about class .B name .TP .PD 0 .B \-\-rextension .IR name .TP .PD 1 .B \-\-re .IR name Shows information about extension .B name .TP .PD 0 .B \-\-rzendextension .IR name .TP .PD 1 .B \-\-rz .IR name Shows information about Zend extension .B name .TP .PD 0 .B \-\-rextinfo .IR name .TP .PD 1 .B \-\-ri .IR name Shows configuration for extension .B name .TP .B \-\-ini Show configuration file names .SH FILES .TP 15 .B php\-cli.ini The configuration file for the CLI version of PHP. .TP .B php.ini The standard configuration file will only be used when .B php\-cli.ini cannot be found. .SH EXAMPLES .TP 5 \fIphp \-r 'echo "Hello World\\n";'\fP This command simply writes the text "Hello World" to standard out. .TP \fIphp \-r 'print_r(gd_info());'\fP This shows the configuration of your gd extension. You can use this to easily check which image formats you can use. If you have any dynamic modules you may want to use the same ini file that php uses when executed from your webserver. There are more extensions which have such a function. For dba use: .RS \fIphp \-r 'print_r(dba_handlers(1));'\fP .RE .TP \fIphp \-R 'echo strip_tags($argn)."\\n";'\fP This PHP command strips off the HTML tags line by line and outputs the result. To see how it works you can first look at the following PHP command \'\fIphp \-d html_errors=1 \-i\fP\' which uses PHP to output HTML formatted configuration information. If you then combine those two \'\fIphp \.\.\.|php \.\.\.\fP\' you'll see what happens. .TP \fIphp \-E 'echo "Lines: $argi\\n";'\fP Using this PHP command you can count the lines being input. .TP \fIphp \-R '@$l+=count(file($argn));' \-E 'echo "Lines:$l\\n";'\fP In this example PHP expects each input line being a file. It counts all lines of the files specified by each input line and shows the summarized result. You may combine this with tools like find and change the php scriptlet. .TP \fIphp \-R 'echo "$argn\\n"; fgets(STDIN);'\fP Since you have access to STDIN from within \-B \-R \-F and \-E you can skip certain input lines with your code. But note that in such cases $argi only counts the lines being processed by php itself. Having read this you will guess what the above program does: skipping every second input line. .SH TIPS You can use a shebang line to automatically invoke php from scripts. Only the CLI version of PHP will ignore such a first line as shown below: .P .PD 0 .RS #!/bin/php .P <?php .P // your script .P ?> .RE .PD 1 .P .SH SEE ALSO For a more or less complete description of PHP look here: .PD 0 .P .B http://www.php.net/manual/ .PD 1 .P .SH BUGS You can view the list of known bugs or report any new bug you found at: .PD 0 .P .B http://bugs.php.net .PD 1 .SH AUTHORS The PHP Group: Thies C. Arntzen, Stig Bakken, Andi Gutmans, Rasmus Lerdorf, Sam Ruby, Sascha Schumann, Zeev Suraski, Jim Winstead, Andrei Zmievski. .P Additional work for the CLI sapi was done by Edin Kadribasic, Marcus Boerger and Johannes Schlueter. .P A List of active developers can be found here: .PD 0 .P .B http://www.php.net/credits.php .PD 1 .P And last but not least PHP was developed with the help of a huge amount of contributors all around the world. .SH VERSION INFORMATION This manpage describes \fBphp\fP, version 8.0.30. .SH COPYRIGHT Copyright \(co The PHP Group .LP This source file is subject to version 3.01 of the PHP license, that is bundled with this package in the file LICENSE, and is available through the world-wide-web at the following url: .PD 0 .P .B http://www.php.net/license/3_01.txt .PD 1 .P If you did not receive a copy of the PHP license and are unable to obtain it through the world-wide-web, please send a note to .B license@php.net so we can mail you a copy immediately. PK ���Zz\u- phar8.0.phar.1nu �[��� .so man1/phar.1 PK ���Z���6#* #* phar8.0.1nu �[��� .TH PHAR 1 "2021" "The PHP Group" "User Commands" .SH NAME phar, phar.phar \- PHAR (PHP archive) command line tool .SH SYNOPSIS .B phar <command> [options] ... .LP .SH DESCRIPTION The \fBPHAR\fP file format provides a way to put entire PHP applications into a single file called a "phar" (PHP Archive) for easy distribution and installation. .P With the \fBphar\fP command you can create, update or extract PHP archives. .P Commands: add compress delete extract help help-list info list meta-del meta-get meta-set pack sign stub-get stub-set tree version .SH add command Add entries to a PHAR package. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .TP .PD .B ... Any number of input files and directories. If -i is in use then ONLY files and matching the given regular expression are being packed. If -x is given then files matching that regular expression are NOT being packed. .P Optional arguments: .TP 15 .PD .B \-a \fIalias\fP Provide an \fIalias\fP name for the phar file. .TP .PD .B \-c \fIalgo\fP Compression algorithm (see .SM .B COMPRESSION ) .TP .PD .B \-i \fIregex\fP Specifies a regular expression for input files. .TP .PD .B \-l \fIlevel\fP Number of preceding subdirectories to strip from file entries .TP .PD .B \-x \fIregex\fP Regular expression for input files to exclude. .SH compress command Compress or uncompress all files or a selected entry. .P Required arguments: .TP 15 .PD .B \-c \fIalgo\fP Compression algorithm (see .SM .B COMPRESSION ) .TP .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .P Optional arguments: .TP 15 .PD .B -e \fIentry\fP Name of \fIentry\fP to work on (must include PHAR internal directory name if any). .SH delete command Delete entry from a PHAR archive .P Required arguments: .TP 15 .PD .B \-e \fIentry\fP Name of \fIentry\fP to work on (must include PHAR internal directory name if any). .TP .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .SH extract command Extract a PHAR package to a directory. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .P Optional arguments: .TP 15 .PD .B -i \fIregex\fP Specifies a regular expression for input files. .TP .PD .B -x \fIregex\fP Regular expression for input files to exclude. .TP .PD .B ... Directory to extract to (defaults to '.'). .SH help command This help or help for a selected command. .P Optional arguments: .TP 15 .PD .B ... Optional command to retrieve help for. .SH help-list command Lists available commands. .SH info command Get information about a PHAR package. .P By using -k it is possible to return a single value. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .P Optional arguments: .TP 15 .PD .B -k \fIindex\fP Subscription \fIindex\fP to work on. .SH list command List contents of a PHAR archive. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .P Optional arguments: .TP 15 .PD .B -i \fIregex\fP Specifies a regular expression for input files. .TP .PD .B -x \fIregex\fP Regular expression for input files to exclude. .SH meta-del command Delete meta information of a PHAR entry or a PHAR package. .P If -k is given then the metadata is expected to be an array and the given index is being deleted. .P If something was deleted the return value is 0 otherwise it is 1. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .P Optional arguments: .TP 15 .PD .B -e \fIentry\fP Name of \fIentry\fP to work on (must include PHAR internal directory name if any). .TP .PD .B -k \fIindex\fP Subscription \fIindex\fP to work on. .SH meta-get command Get meta information of a PHAR entry or a PHAR package in serialized from. If no output file is specified for meta data then stdout is being used. You can also specify a particular index using -k. In that case the metadata is expected to be an array and the value of the given index is returned using echo rather than using serialize. If that index does not exist or no meta data is present then the return value is 1. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .P Optional arguments: .TP 15 .PD .B -e \fIentry\fP Name of \fIentry\fP to work on (must include PHAR internal directory name if any). .TP .PD .B -k \fIindex\fP Subscription \fIindex\fP to work on. .SH meta-set command Set meta data of a PHAR entry or a PHAR package using serialized input. If no input file is specified for meta data then stdin is being used. You can also specify a particular index using -k. In that case the metadata is expected to be an array and the value of the given index is being set. If the metadata is not present or empty a new array will be created. If the metadata is present and a flat value then the return value is 1. Also using -k the input is been taken directly rather then being serialized. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .TP .PD .B -m \fImeta\fP Meta data to store with entry (serialized php data). .P Optional arguments: .TP 15 .PD .B -e \fIentry\fP Name of \fIentry\fP to work on (must include PHAR internal directory name if any). .TP .PD .B -k \fIindex\fP Subscription \fIindex\fP to work on. .SH pack command Pack files into a PHAR archive. .P When using -s <stub>, then the stub file is being excluded from the list of input files/dirs.To create an archive that contains PEAR class PHP_Archive then point -p argument to PHP/Archive.php. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .TP .PD .B ... Any number of input files and directories. If -i is in use then ONLY files and matching the given regular expression are being packed. If -x is given then files matching that regular expression are NOT being packed. .P Optional arguments: .TP 15 .PD .B \-a \fIalias\fP Provide an \fIalias\fP name for the phar file. .TP .PD .B \-b \fIbang\fP Hash-bang line to start the archive (e.g. #!/usr/bin/php). The hash mark itself '#!' and the newline character are optional. .TP .PD .B \-c \fIalgo\fP Compression algorithm (see .SM .B COMPRESSION ) .TP .PD .B \-h \fIhash\fP Selects the \fIhash\fP algorithm (see .SM .B HASH ) .TP .PD .B \-i \fIregex\fP Specifies a regular expression for input files. .TP .PD .B \-l \fIlevel\fP Number of preceding subdirectories to strip from file entries .TP .PD .B \-p \fIloader\fP Location of PHP_Archive class file (pear list-files PHP_Archive).You can use '0' or '1' to locate it automatically using the mentioned pear command. When using '0' the command does not error out when the class file cannot be located. This switch also adds some code around the stub so that class PHP_Archive gets registered as phar:// stream wrapper if necessary. And finally this switch will add the file phar.inc from this package and load it to ensure class Phar is present. .TP .PD .B \-s \fIstub\fP Select the \fIstub\fP file. .TP .PD .B \-x \fIregex\fP Regular expression for input files to exclude. .TP .PD .B \-y \fIkey\fP Private \fIkey\fP for OpenSSL signing. .SH sign command Set signature hash algorithm. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .TP .PD .B \-h \fIhash\fP Selects the \fIhash\fP algorithm (see .SM .B HASH ) .P Optional arguments: .TP 15 .PD .B \-y \fIkey\fP Private \fIkey\fP for OpenSSL signing. .SH stub-get command Get the stub of a PHAR file. If no output file is specified as stub then stdout is being used. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .P Optional arguments: .TP 15 .PD .B \-s \fIstub\fP Select the \fIstub\fP file. .SH stub-set command Set the stub of a PHAR file. If no input file is specified as stub then stdin is being used. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .P Optional arguments: .TP 15 .PD .B \-b \fIbang\fP Hash-bang line to start the archive (e.g. #!/usr/bin/php). The hash mark itself '#!' and the newline character are optional. .TP .PD .B \-p \fIloader\fP Location of PHP_Archive class file (pear list-files PHP_Archive).You can use '0' or '1' to locate it automatically using the mentioned pear command. When using '0' the command does not error out when the class file cannot be located. This switch also adds some code around the stub so that class PHP_Archive gets registered as phar:// stream wrapper if necessary. And finally this switch will add the file phar.inc from this package and load it to ensure class Phar is present. .TP .PD .B \-s \fIstub\fP Select the \fIstub\fP file. .SH tree command Get a directory tree for a PHAR archive. .P Required arguments: .TP 15 .PD .B -f \fIfile\fP Specifies the phar \fIfile\fP to work on. .P Optional arguments: .TP 15 .PD .B \-i \fIregex\fP Specifies a regular expression for input files. .TP .PD .B \-x \fIregex\fP Regular expression for input files to exclude. .SH version command Get information about the PHAR environment and the tool version. .SH COMPRESSION Algorithms: .TP 15 .PD .B 0 No compression .TP .PD .B none No compression .TP .PD .B auto Automatically select compression algorithm .TP .PD .B gz GZip compression .TP .PD .B gzip GZip compression .TP .PD .B bz2 BZip2 compression .TP .PD .B bzip2 BZip2 compression .SH HASH Algorithms: .TP 15 .PD .TP .PD .B md5 MD5 .TP .PD .B sha1 SHA1 .TP .PD .B sha256 SHA256 .TP .PD .B sha512 SHA512 .TP .PD .B openssl OpenSSL .SH SEE ALSO For a more or less complete description of PHAR look here: .PD 0 .P .B http://php.net/phar .PD 1 .P .SH BUGS You can view the list of known bugs or report any new bug you found at: .PD 0 .P .B http://bugs.php.net .PD 1 .SH AUTHORS The PHP Group: Thies C. Arntzen, Stig Bakken, Andi Gutmans, Rasmus Lerdorf, Sam Ruby, Sascha Schumann, Zeev Suraski, Jim Winstead, Andrei Zmievski. .P Work for the PHP archive was done by Gregory Beaver, Marcus Boerger. .P A List of active developers can be found here: .PD 0 .P .B http://www.php.net/credits.php .PD 1 .P And last but not least PHP was developed with the help of a huge amount of contributors all around the world. .SH VERSION INFORMATION This manpage describes \fBphar\fP, version 8.0.30. .SH COPYRIGHT Copyright \(co The PHP Group .LP This source file is subject to version 3.01 of the PHP license, that is bundled with this package in the file LICENSE, and is available through the world-wide-web at the following url: .PD 0 .P .B http://www.php.net/license/3_01.txt .PD 1 .P If you did not receive a copy of the PHP license and are unable to obtain it through the world-wide-web, please send a note to .B license@php.net so we can mail you a copy immediately. PK ���Z-��� peardev.1nu �[��� .so man1/pear.1 PK ���Z8��'f f pear.1nu �[��� .TH PEAR 1 "2013" "The PEAR Group" "User commands" .SH NAME pear, pecl, peardev \- PEAR installer .SH SYNOPSIS .B pear [ options ] command [command-options] <parameters> .LP .B pecl [ options ] command [command-options] <parameters> .LP .B peardev [ options ] command [command-options] <parameters> .LP .SH DESCRIPTION \fBPEAR\fP is the PHP Extension and Application Repository, found at .B http://pear.php.net. .P .P The \fBpear\fP command is used to install PEAR extensions. .P The \fBpecl\fP command is used to install PECL extensions. .P The \fBpeardev\fP command is a wrapper for the \fBpear\fP command which removes the normal configured memory limit. .SH OPTIONS .TP 15 .B \-v increase verbosity level (default 1) .TP .B \-q be quiet, decrease verbosity level .TP .B \-c \fIfile\fP find user configuration in \fBfile\fP .TP .B \-C \fIfile\fP find system configuration in \fBfile\fP .TP .B \-d \fIfoo=bar\fP set user config variable \fBfoo\fP to \fBbar\fP .TP .B \-D \fIfoo=bar\fP set system config variable \fBfoo\fP to \fBbar\fP .TP .B \-G start in graphical (Gtk) mode .TP .B \-S store system configuration .TP .B \-s store user configuration .TP .B \-y \fIfoo\fP unset .B foo in the user configuration .TP .B \-V version information .TP .PD 0 .B \-h .TP .PD 1 .B \-? display help/usage .SH COMMANDS .TP 15 .B build Build an Extension From C Source .TP .B bundle Unpacks a Pecl Package .TP .B channel-add Add a Channel .TP .B channel-alias Specify an alias to a channel name .TP .B channel-delete Remove a Channel From the List .TP .B channel-discover Initialize a Channel from its server .TP .B channel-info Retrieve Information on a Channel .TP .TP .B channel-login Connects and authenticates to remote channel server .TP .B channel-logout Logs out from the remote channel server .TP .B channel-update Update an Existing Channel .TP .B clear-cache Clear Web Services Cache .TP .B config-create Create a Default configuration file .TP .B config-get Show One Setting .TP .B config-help Show Information About Setting .TP .B config-set Change Setting .TP .B config-show Show All Settings .TP .B convert Convert a package.xml 1.0 to package.xml 2.0 format .TP .B cvsdiff Run a "cvs diff" for all files in a package .TP .B cvstag Set CVS Release Tag .TP .B download Download Package .TP .B download-all Downloads each available package from the default channel .TP .B info Display information about a package .TP .B install Install Package .TP .B list List Installed Packages In The Default Channel .TP .B list-all List All Packages .TP .B list-channels List Available Channels .TP .B list-files List Files In Installed Package .TP .B list-upgrades List Available Upgrades .TP .B login Connects and authenticates to remote server [Deprecated in favor of channel-login] .TP .B logout Logs out from the remote server [Deprecated in favor of channel-logout] .TP .B make-rpm-spec Builds an RPM spec file from a PEAR package .TP .B makerpm Builds an RPM spec file from a PEAR package .TP .B package Build Package .TP .B package-dependencies Show package dependencies .TP .B package-validate Validate Package Consistency .TP .B pickle Build PECL Package .TP .B remote-info Information About Remote Packages .TP .B remote-list List Remote Packages .TP .B run-scripts Run Post-Install Scripts bundled with a package .TP .B run-tests Run Regression Tests .TP .B search Search remote package database .TP .B shell-test Shell Script Test .TP .B sign Sign a package distribution file .TP .B svntag Set SVN Release Tag .TP .B uninstall Un-install Package .TP .B update-channels Update the Channel List .TP .B upgrade Upgrade Package .TP .B upgrade-all Upgrade All Packages [Deprecated in favor of calling upgrade with no parameters] .SH FILES .TP 15 .B /etc/pear.conf The system configuration file. .TP .B $HOME/.pearrc The user configuration. .SH SEE ALSO .TP To list all options, use .PS pear help options .TP To list all command shortcuts, use .PS pear help shortcuts .TP to get the help for the specified command, use .PS pear help \fIcommand\fP .TP Documentation for PEAR can be found at .PD 0 .P .B http://pear.php.net/manual/ .SH VERSION INFORMATION This manpage describes \fBPEAR\fP, version 1.10.0. .SH COPYRIGHT Copyright \(co 1997\-2009 Stig Bakken, Gregory Beaver, Helgi Þormar Þorbjörnsson, Tomas V.V.Cox, Martin Jansen. .P All rights reserved. .P Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: .P * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. .P * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. .SH BUGS You can view the list of known bugs or report any new bug you found at: .PD 0 .P .B http://pear.php.net/bugs/ PK ���Z��-� � php-config8.0.1nu �[��� .TH php\-config 1 "2021" "The PHP Group" "Scripting Language" .SH NAME php\-config \- get information about PHP configuration and compile options .SH SYNOPSIS .B php\-config [options] .LP .SH DESCRIPTION .B php\-config is a simple shell script for obtaining information about installed PHP configuration. .SH OPTIONS .TP 15 .PD 0 .B \-\-prefix Directory prefix where PHP is installed, e.g. /usr/local .TP .PD 0 .B \-\-includes List of \-I options with all include files .TP .PD 0 .B \-\-ldflags LD Flags which PHP was compiled with .TP .PD 0 .B \-\-libs Extra libraries which PHP was compiled with .TP .PD 0 .B \-\-man-dir The directory prefix where the manpages is installed .TP .PD 0 .B \-\-extension-dir Directory where extensions are searched by default .TP .PD 0 .B \-\-include-dir Directory prefix where header files are installed by default .TP .PD 0 .B \-\-php-binary Full path to php CLI or CGI binary .TP .PD 0 .B \-\-php-sapis Show all SAPI modules available .TP .PD 0 .B \-\-configure-options Configure options to recreate configuration of current PHP installation .TP .PD 0 .B \-\-version PHP version .TP .PD 0 .B \-\-vernum PHP version as integer .RS .PD 1 .P .SH SEE ALSO .BR php (1) .SH VERSION INFORMATION This manpage describes \fBphp\fP, version 8.0.30. .SH COPYRIGHT Copyright \(co The PHP Group .LP This source file is subject to version 3.01 of the PHP license, that is bundled with this package in the file LICENSE, and is available through the world-wide-web at the following url: .PD 0 .P .B http://www.php.net/license/3_01.txt .PD 1 .P If you did not receive a copy of the PHP license and are unable to obtain it through the world-wide-web, please send a note to .B license@php.net so we can mail you a copy immediately. PK ���Z\6�� � phpize8.0.1nu �[��� .TH phpize 1 "2021" "The PHP Group" "Scripting Language" .SH NAME phpize \- prepare a PHP extension for compiling .SH SYNOPSIS .B phpize [options] .LP .SH DESCRIPTION .B phpize is a shell script to prepare PHP extension for compiling. .SH OPTIONS .TP 15 .PD 0 .B \-\-clean Remove all created files .TP .PD 0 .B \-\-help Prints usage information .TP .PD 0 .B \-\-version .TP .PD 1 .B \-v Prints API version information .RS .PD 1 .P .SH SEE ALSO .BR php (1) .SH VERSION INFORMATION This manpage describes \fBphp\fP, version 8.0.30. .SH COPYRIGHT Copyright \(co The PHP Group .LP This source file is subject to version 3.01 of the PHP license, that is bundled with this package in the file LICENSE, and is available through the world-wide-web at the following url: .PD 0 .P .B http://www.php.net/license/3_01.txt .PD 1 .P If you did not receive a copy of the PHP license and are unable to obtain it through the world-wide-web, please send a note to .B license@php.net so we can mail you a copy immediately. PK ���Zz\u- phar8.2.phar.1nu �[��� .so man1/phar.1 PK ���Z]@Ƞ&