溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

shell_exec 中怎么捕獲標(biāo)準(zhǔn)錯(cuò)誤流

發(fā)布時(shí)間:2021-08-13 11:36:52 來(lái)源:億速云 閱讀:110 作者:Leah 欄目:編程語(yǔ)言

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)shell_exec 中怎么捕獲標(biāo)準(zhǔn)錯(cuò)誤流,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

實(shí)際上Swoole提供的System::exec()行為上與PHPshell_exec是完全一致的,我們寫(xiě)一個(gè)shell_exec的同步阻塞版本,執(zhí)行后發(fā)現(xiàn)同樣拿不到標(biāo)準(zhǔn)錯(cuò)誤流輸出的內(nèi)容,會(huì)被直接打印到屏幕。

<?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$

那么如何解決這個(gè)問(wèn)題呢?答案就是使用proc_open+hook實(shí)現(xiàn)。

實(shí)例代碼

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個(gè)描述信息:

  • fd0 的流是標(biāo)準(zhǔn)輸入,可以在主進(jìn)程內(nèi)向這個(gè)流寫(xiě)入數(shù)據(jù),子進(jìn)程就可以得到數(shù)據(jù)

  • fd1 的流是標(biāo)準(zhǔn)輸出,這里可以得到執(zhí)行命令的輸出內(nèi)容

  • fd2pipe stream 就是 stderr ,讀取 stderr 就能拿到錯(cuò)誤信息輸出

使用fread就可以拿到標(biāo)準(zhǔn)錯(cuò)誤流輸出的內(nèi)容。

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 中怎么捕獲標(biāo)準(zhǔn)錯(cuò)誤流了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI