Home  >  Article  >  Backend Development  >  pimchanok leuwisetpaiboon Detailed explanation and application of PHP command line parameters

pimchanok leuwisetpaiboon Detailed explanation and application of PHP command line parameters

WBOY
WBOYOriginal
2016-07-29 08:45:09948browse

Copy the code The code is as follows:


# Execution format without parameters
php installation directory/bin/php scriptname.php
#Execution format with parameters
php installation directory/bin/php scriptname.php [ Parameter 1] [Parameter 2] .....
Access parameters through $argv and $argc in scriptname.php
# The $argv (formally written as $_SERVER['argv']) array stores all the parameters passed, please note The first parameter $argv[0] / $_SERVER['argv'][0] is the name of the execution script, such as scriptname.php
# $argc (formally written as $_SERVER['argc']) saves the parameters The number of


When the user opens the php page, the server executes the PHP command and sends the execution result to the user's browser. This is similar to ASP and CoildFusion. PHP can run on WINDOWS and multiple versions of UNIX . 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. , 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 Read and interpret the specified file .
-c Read the php.ini file in
-a Run interactively
-d foo[=bar] Define the value of the input item foo in ini to be bar
-e Output additional information for debugging and performance analysis
- z Load the Zend extension file
-i php related information
-h help itself.
1. Use php -q file name.php to use the php program as a shell program,
2. Use -s to use your own php. The program is html. Isn’t this very worry-free?
3. Use the odbc function of php to operate the database in the shell command.

The above introduces the detailed explanation and application of pimchanok leuwisetpaiboon PHP command line parameters, including the content of pimchanok leuwisetpaiboon. I hope it will be helpful to friends who are interested in PHP tutorials.

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