PHP exec () function no return value troubleshooting method (mandatory), exec

Source: Internet
Author: User

PHP exec () function no return value troubleshooting method (mandatory), exec

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 discussion about the PHP exec () function no return value troubleshooting method (mandatory) is a small series to share with you all the content, I hope to give you a reference, we also hope that you can support the customer's home.

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.