PHP 클래스 yii\httpclient\Response

부터: 2.0
저자: Paul Klimov ([email protected])
상속: extends Message
파일 보기 프로젝트 열기: yiisoft/yii2-httpclient 1 사용 예제들

공개 메소드들

메소드 설명
getCookies ( )
getData ( )
getIsOk ( ) : boolean Checks if response status code is OK (status code = 20x)
getStatusCode ( ) : string Returns status code.

보호된 메소드들

메소드 설명
defaultFormat ( ) : string | null Returns default format automatically detected from headers and content.
detectFormatByContent ( string $content ) : null | string Detects response format from raw content.
detectFormatByHeaders ( HeaderCollection $headers ) : null | string Detects format from headers.

비공개 메소드들

메소드 설명
getParser ( ) : yii\httpclient\ParserInterface
normalizeCookieParamName ( string $rawName ) : string
parseCookie ( string $cookieString ) : Cookie Parses cookie value string, creating a [[Cookie]] instance.

메소드 상세

defaultFormat() 보호된 메소드

Returns default format automatically detected from headers and content.
protected defaultFormat ( ) : string | null
리턴 string | null format name, 'null' - if detection failed.

detectFormatByContent() 보호된 메소드

Detects response format from raw content.
protected detectFormatByContent ( string $content ) : null | string
$content string raw response content.
리턴 null | string format name, 'null' - if detection failed.

detectFormatByHeaders() 보호된 메소드

Detects format from headers.
protected detectFormatByHeaders ( HeaderCollection $headers ) : null | string
$headers yii\web\HeaderCollection source headers.
리턴 null | string format name, 'null' - if detection failed.

getCookies() 공개 메소드

public getCookies ( )

getData() 공개 메소드

public getData ( )

getIsOk() 공개 메소드

Checks if response status code is OK (status code = 20x)
public getIsOk ( ) : boolean
리턴 boolean whether response is OK.

getStatusCode() 공개 메소드

Returns status code.
public getStatusCode ( ) : string
리턴 string status code.