您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關shell_exec 中怎么捕獲標準錯誤流,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
實際上Swoole
提供的System::exec()
行為上與PHP
的shell_exec
是完全一致的,我們寫一個shell_exec
的同步阻塞版本,執行后發現同樣拿不到標準錯誤流輸出的內容,會被直接打印到屏幕。
<?php $result = shell_exec('unknown'); var_dump($result);
htf@htf-ThinkPad-T470p:~/workspace/debug$ php s.php sh: 1: unknown: not found NULL htf@htf-ThinkPad-T470p:~/workspace/debug$
那么如何解決這個問題呢?答案就是使用proc_open
+hook
實現。
Swoole\Runtime::setHookFlags(SWOOLE_HOOK_ALL); Swoole\Coroutine\run(function () { $descriptorspec = array( 0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 => array("pipe", "w"), ); $process = proc_open('unknown', $descriptorspec, $pipes); var_dump($pipes); var_dump(fread($pipes[2], 8192)); $return_value = proc_close($process); echo "command returned $return_value\n"; });
使用proc_open
,傳入了3
個描述信息:
fd
為 0
的流是標準輸入,可以在主進程內向這個流寫入數據,子進程就可以得到數據
fd
為 1
的流是標準輸出,這里可以得到執行命令的輸出內容
fd
為 2
的 pipe stream
就是 stderr
,讀取 stderr
就能拿到錯誤信息輸出
使用fread
就可以拿到標準錯誤流輸出的內容。
htf@htf-ThinkPad-T470p:~/workspace/swoole/examples/coroutine$ php proc_open.php array(3) { [0]=> resource(4) of type (stream) [1]=> resource(5) of type (stream) [2]=> resource(6) of type (stream) } string(26) "sh: 1: unknown: not found " command returned 32512 htf@htf-ThinkPad-T470p:~/workspace/swoole/examples/coroutine$
上述就是小編為大家分享的shell_exec 中怎么捕獲標準錯誤流了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。