這篇文章主要介紹在Laravel中如何執(zhí)行Shell命令,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
農(nóng)安ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)公司的ssl證書(shū)銷(xiāo)售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書(shū)合作)期待與您的合作!
shell_exec()
和 exec()
都可以執(zhí)行 shell 命令。
如果你的命令不知道因?yàn)槭裁丛蚨罎?,你將不?huì)知道其原因 —— 因?yàn)?strong>shell_exec()
和 exec()
不會(huì)拋出異常,他們只是默默地執(zhí)行失敗了。
這是我的解決方案:
use Symfony\Component\Process\Process; class ShellCommand { public static function execute($cmd): string { $process = Process::fromShellCommandline($cmd); $processOutput = ''; $captureOutput = function ($type, $line) use (&$processOutput) { $processOutput .= $line; }; $process->setTimeout(null) ->run($captureOutput); if ($process->getExitCode()) { $exception = new ShellCommandFailedException($cmd . " - " . $processOutput); report($exception); throw $exception; } return $processOutput; } }
它使用了 Symfony's 的 Process 組件。
使用這種方法,我可以拋出一個(gè)自定義異常,記錄命令和輸出,或者是記錄到日志以尋找問(wèn)題。
以上是“在Laravel中如何執(zhí)行Shell命令”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!