Determine shell_exec execution result in php

WBOY
Release: 2016-07-29 08:51:15
Original
1279 people have browsed it

When doing third-party login, downloading the avatar during registration is time-consuming, so it is changed to asynchronous shell_exec to execute wget

However, shell_exec has no output after successful execution and null is returned when execution fails. It is a problem to distinguish when recording error logs. .

I found the method of differentiation in the comments of the php manual, and I will record it here.

$shell = "wget -O despath sourcepath &&  echo 'success' ";
$shellExec = shell_exec($shell);
var_dump($shellExec);
Copy after login

In this way, when the previous execution is successful, the echo will be executed. The execution result is success instead of empty.

If the execution fails, the echo will not continue to be executed. The execution result is still null.

This way, the execution result is distinguished and the corresponding record is recorded. The log is OK.

The above introduces the judgment of shell_exec execution results in PHP, including the relevant aspects. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!