This article mainly introduces the php method for calling shell, including the relevant principles, precautions, and function usage. If you need it, refer to the example in this article to describe the php method for calling shell, share it with you for your reference. The specific method is as follows:
I. Configuration
Check whether the security mode is enabled in the php. ini configuration, mainly in the following three places:
Safe_mode = (if this parameter is off, you don't need to worry about it)
Disable_functions =
Safe_mode_exec_dir =
Ii. Use
Since PHP is basically used for WEB program development, security has become an important aspect of consideration. As a result, PHP designers added a security mode to PHP. If running in safe mode, the PHP script will be subject to the following four restrictions:
① Execute External commands
② There are some restrictions when opening a file
③ Connect to the MySQL database
④ HTTP-based authentication
In security mode, only external programs in a specific directory can be executed, and calls to other programs will be rejected. This directory can be specified by using the safe_mode_exec_dir command in the php. ini file, or by adding the -- with-exec-dir option to compile PHP. The default value is/usr/local/php/bin.
If you call an external command that should be able to output the result (meaning that the PHP script is correct), the result is blank, it is very likely that your network administrator has run PHP In security mode.
3. How to do it?
You can use the following three methods to call external commands in PHP:
1) use special functions provided by PHP
PHP provides three specialized functions for executing external commands: system (), exec (), and passthru ().
System ()
Prototype: string system (string command [, int return_var])
The system () function is similar to the one in other languages. It executes the given command, outputs and returns the result. The second parameter is optional and is used to obtain the status code after the command is executed.
Example:
The Code is as follows:
System ("/usr/local/bin/webalizer ");
Exec ()
Prototype: string exec (string command [, string array [, int return_var])
The exec () function is similar to system (). It also executes the given command, but does not output the result, but returns the last line of the result. Although it only returns the last line of the command result, the complete result can be obtained using the second parameter array by appending the result row by row to the end of the array. Therefore, if the array is not empty, we recommend that you use unset () to clear it before calling it. Only when the second parameter is specified can the third parameter be used to obtain the command execution status code.
Example:
The Code is as follows:
Exec ("/bin/ls-l ");
Exec ("/bin/ls-l", $ res );
# $ Res is a data. Each element represents a row of the result.
Exec ("/bin/ls-l", $ res, $ rc );
# $ Rc is the status code of the command/bin/ls-l. The success is usually 0.
Passthru ()
Prototype: void passthru (string command [, int return_var])
Passthru () only calls the command and does not return any results, but directly outputs the running result of the command to the standard output device as is. Therefore, the passthru () function is often used to call programs such as pbmplus (a Unix-based image processing tool that outputs binary original image streams. It can also get the status code of command execution.
Example:
The Code is as follows:
Header ("Content-type: image/gif ");
Passthru ("./ppmtogif hunte. ppm ");
I hope this article will help you with PHP programming.