Determine shell_exec execution result in php
Jul 29, 2016 am 08:51 AMWhen 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.

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Solution: Your organization requires you to change your PIN

How to adjust window border settings on Windows 11: Change color and size

How to change title bar color on Windows 11?

How to enable or disable taskbar thumbnail previews on Windows 11

OOBELANGUAGE Error Problems in Windows 11/10 Repair

10 Ways to Adjust Brightness on Windows 11

How to turn off private browsing authentication for iPhone in Safari?
