Home  >  Article  >  Backend Development  >  Determine shell_exec execution result in php

Determine shell_exec execution result in php

WBOY
WBOYOriginal
2016-07-29 08:51:151280browse

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);

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.

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