A brief introduction to the troubleshooting method for PHP exec () functions without return values (recommended)

Source: Internet
Author: User
The following small series will bring you an article on the PHP exec () function no return value troubleshooting method (mandatory ). I think this is quite good. now I will share it with you and give you a reference. Let's take a look at the following small series for you to discuss the PHP exec () function no return value troubleshooting method (mandatory ). I think this is quite good. now I will share it with you and give you a reference. Let's take a look at it with Xiaobian.

Exec is required for security imagemagic. many servers fail to be installed.

Exec () failed to execute the external command, but there was no error message.

Exec executes a command in the command line, but an error occurs in php. This issue is 99.99% related to permissions, but the command executed by exec will not return an error. One trick is to use the pipeline command. assume that your exec call is as follows:

Exec ('convert a.jpg B .jpg ', $ output, $ return_val );

You can change it as follows:

Exec ('convert a.jpg B .jpg 2> & 1', $ output, $ return_val); print_r ($ output );

Use2> & 1The command will output the error of shell execution to the $ output variable, and output the variable for analysis.

Note: exec has three parameters. The first parameter is the command to be executed, the second parameter is an array, and the value of the array is generated after the first command is executed,The execution status of the third parameter. 0 indicates that the execution is successful.

There are three functions in php that can be used to execute external commands system, exec, passthru.

The above is a brief introduction to the details of the PHP exec () function troubleshooting method without return values (recommended). For more information, see other related articles in the first PHP community!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.