Guzzle 6의 응답에서 본문 검색
Guzzle을 사용하면 응답 본문이 스트림에 저장됩니다. 이를 검색하려면 두 가지 일반적인 접근 방식이 있습니다.
PHP Casting Operator 사용
<br>$contents = (string) $response-> getBody();<br>
이 작업은 다음을 읽습니다. 스트림의 시작부터 끝까지 모든 데이터. getBody()->getContents()에 대한 후속 호출은 빈 문자열을 반환합니다.
getBody()->getContents() 사용
$contents = $response->getBody()->getContents();
getContents()는 스트림의 나머지 내용만 반환합니다. rewind() 또는eek()을 사용하여 위치를 찾지 않고 두 번 호출하면 빈 문자열이 반환됩니다.
예
(문자열) 사용:
$contents = (string) $response->getBody(); echo $contents; // Prints entire response body $contents = (string) $response->getBody(); echo $contents; // Empty string, as data has already been consumed
사용 getContents():
$stream = $response->getBody(); $contents = $stream->getContents(); // Prints entire response body $contents = $stream->getContents(); // Empty string, as data has not been reset $stream->rewind(); // Reset stream $contents = $stream->getContents(); // Prints entire response body
결론
두 접근 방식 모두 응답 본문을 검색합니다. 데이터를 한 번만 읽어야 하는지, 여러 번 읽어야 하는지 등 특정 요구 사항에 따라 방법을 선택하세요.
위 내용은 Guzzle 6에서 응답 본문을 효율적으로 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!