> 백엔드 개발 > PHP 튜토리얼 > PHP의 Exec() 명령에서 stdout과 stderr을 모두 캡처하려면 어떻게 해야 합니까?

PHP의 Exec() 명령에서 stdout과 stderr을 모두 캡처하려면 어떻게 해야 합니까?

Mary-Kate Olsen
풀어 주다: 2024-12-30 03:28:16
원래의
286명이 탐색했습니다.

How Can I Capture Both stdout and stderr from an Exec() Command in PHP?

Exec() 이후의 PHP StdErr

PHP에서 exec() 함수는 명령을 실행하고 명령의 stdout에서 출력을 반환합니다. 그러나 명령이 stderr에 기록되면 이 출력은 exec()에 의해 캡처되지 않습니다.

명령에서 stdout과 stderr을 모두 캡처하려면 proc_open() 함수를 사용할 수 있습니다. proc_open()은 명령의 stdin, stdout 및 stderr 스트림을 파이프하는 기능을 포함하여 명령 실행 프로세스에 대한 더 높은 수준의 제어를 제공합니다.

예:

stderr과 stderr 모두에 쓰는 다음 셸 스크립트 test.sh를 고려해 보겠습니다. stdout:

#!/bin/bash

echo 'this is on stdout';
echo 'this is on stdout too';

echo 'this is on stderr' >&2;
echo 'this is on stderr too' >&2;
로그인 후 복사

PHP에서 이 스크립트를 실행하고 stdout과 stderr을 모두 캡처하려면 다음 코드를 사용할 수 있습니다.

$descriptorspec = [
    0 => ['pipe', 'r'],  // stdin
    1 => ['pipe', 'w'],  // stdout
    2 => ['pipe', 'w'],  // stderr
];

$process = proc_open('./test.sh', $descriptorspec, $pipes, dirname(__FILE__), null);

$stdout = stream_get_contents($pipes[1]);
fclose($pipes[1]);

$stderr = stream_get_contents($pipes[2]);
fclose($pipes[2]);

echo "stdout : \n";
var_dump($stdout);

echo "stderr :\n";
var_dump($stderr);
로그인 후 복사

출력:

위 PHP 스크립트를 실행하면 다음과 같은 결과가 나옵니다. 출력:

stdout :
string(40) "this is on stdout
this is on stdout too"
stderr :
string(40) "this is on stderr
this is on stderr too"
로그인 후 복사

출력에는 test.sh 스크립트의 stdout 및 stderr 스트림이 표시됩니다.

위 내용은 PHP의 Exec() 명령에서 stdout과 stderr을 모두 캡처하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿