PHP 클래스 yii\web\XmlResponseFormatter

It is used by Response to format response data.
부터: 2.0
저자: Qiang Xue ([email protected])
상속: extends yii\base\Component, implements yii\web\ResponseFormatterInterface
파일 보기 프로젝트 열기: yiisoft/yii2 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$contentType the Content-Type header for the response
$encoding the XML encoding. If not set, it will use the value of [[Response::charset]].
$itemTag the name of the elements that represent the array elements with numeric keys.
$rootTag the name of the root element.
$useTraversableAsArray whether to interpret objects implementing the [[\Traversable]] interface as arrays. Defaults to true.
$version the XML version

공개 메소드들

메소드 설명
format ( Response $response ) Formats the specified response.

보호된 메소드들

메소드 설명
buildXml ( DOMElement $element, mixed $data )
formatScalarValue ( integer | string | boolean $value ) : string Formats scalar value to use in XML text node

메소드 상세

buildXml() 보호된 메소드

protected buildXml ( DOMElement $element, mixed $data )
$element DOMElement
$data mixed

format() 공개 메소드

Formats the specified response.
public format ( Response $response )
$response Response the response to be formatted.

formatScalarValue() 보호된 메소드

Formats scalar value to use in XML text node
부터: 2.0.11
protected formatScalarValue ( integer | string | boolean $value ) : string
$value integer | string | boolean
리턴 string

프로퍼티 상세

$contentType 공개적으로 프로퍼티

the Content-Type header for the response
public $contentType

$encoding 공개적으로 프로퍼티

the XML encoding. If not set, it will use the value of [[Response::charset]].
public $encoding

$itemTag 공개적으로 프로퍼티

the name of the elements that represent the array elements with numeric keys.
public $itemTag

$rootTag 공개적으로 프로퍼티

the name of the root element.
public $rootTag

$useTraversableAsArray 공개적으로 프로퍼티

whether to interpret objects implementing the [[\Traversable]] interface as arrays. Defaults to true.
부터: 2.0.7
public $useTraversableAsArray

$version 공개적으로 프로퍼티

the XML version
public $version