PHP용 인기 HTTP 클라이언트 라이브러리인 Guzzle 6은 스트림 사용을 요구하는 PSR-7 표준을 활용합니다. 메시지 본문을 저장합니다. 이 본문을 문자열로 검색하려면 다음 방법 중 하나를 활용하세요.
$contents = (string) $response->getBody();
$contents = $response->getBody()->getContents();
키 차이점:
예:
$stream = $response->getBody(); $contents = $stream->getContents(); // returns all contents $contents = $stream->getContents(); // empty string $stream->rewind(); // reset stream position $contents = $stream->getContents(); // returns all contents again
In 대비:
$contents = (string) $response->getBody(); // returns all contents $contents = (string) $response->getBody(); // returns all contents again
자세한 내용은 Guzzle 문서를 참조하세요: http://docs.guzzlephp.org/en/latest/psr7.html#responses
위 내용은 Guzzle 6에서 응답 본문을 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!