Home  >  Article  >  Backend Development  >  Detailed explanation and application of PHP command line parameters_PHP tutorial

Detailed explanation and application of PHP command line parameters_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:37:07874browse

When the user opens the php page, the server executes the PHP command and sends the execution results to the user's browser. This is similar to ASP and CoildFusion. PHP can run on WINDOWS and multiple versions of UNIX superior. In addition to being able to manipulate your pages, PHP can also send HTTP headers.

You can set cookies, manage digital signatures and redirect users, and it provides excellent connectivity to other databases (also ODBC), integrating various external libraries to do anything from parsing XML with PDF documents. Then did you know that you can use the powerful functions of php to do other things? When running in independent cgi mode, a php executable program is required. It has many command line parameters, some of which can be used for fun purposes. The following are all php command line parameters, where [] indicates that they are optional. Yes, the <> table is a must. Usage php [-q] [-h] [-s] [-v] [-i] [-f ] | { [args...]} -q Quiet mode. Do not output HTTP headers.

-s Convert PHP program files to HTML in color format (for example, reserved words are in green, functions and variables are in blue, comments are in yellow and strings are in red, etc.

-f reads and interprets the specified file.

-c reads the php.ini file in

-a run interactively

-d foo[=bar] defines the value of the input item foo in ini as bar

-e output additional information for debugging and performance analysis

-z Load Zend expansion file

-i php related information

-h help itself.

1. Use php -q filename.php to use the php program as a shell program,

2. Use -s to html your own php program. Isn’t this very worry-free?

3. Use the odbc function of php to operate the database in shell commands.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/486601.htmlTechArticleWhen the user opens the php page, the server executes the PHP command and sends the execution result to the user's browser , which is similar to ASP and CoildFusion, PHP can run on WINDOWS and multiple versions...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn