PHP 클래스 SAML2\XML\Chunk

상속: implements Serializable
파일 보기 프로젝트 열기: simplesamlphp/saml2 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$localName string The localName of the element.
$namespaceURI string The namespaceURI of this element.
$xml DOMElement The \DOMElement we contain.

공개 메소드들

메소드 설명
__construct ( DOMElement $xml ) Create a XMLChunk from a copy of the given \DOMElement.
getXML ( ) : DOMElement Get this \DOMElement.
serialize ( ) : string Serialize this XML chunk.
toXML ( DOMElement $parent ) : DOMElement Append this XML element to a different XML element.
unserialize ( string $serialized ) Un-serialize this XML chunk.

메소드 상세

__construct() 공개 메소드

Create a XMLChunk from a copy of the given \DOMElement.
public __construct ( DOMElement $xml )
$xml DOMElement The element we should copy.

getXML() 공개 메소드

Get this \DOMElement.
사용 중단:
public getXML ( ) : DOMElement
리턴 DOMElement This element.

serialize() 공개 메소드

Serialize this XML chunk.
public serialize ( ) : string
리턴 string The serialized chunk.

toXML() 공개 메소드

Append this XML element to a different XML element.
public toXML ( DOMElement $parent ) : DOMElement
$parent DOMElement The element we should append this element to.
리턴 DOMElement The new element.

unserialize() 공개 메소드

Un-serialize this XML chunk.
public unserialize ( string $serialized )
$serialized string The serialized chunk.

프로퍼티 상세

$localName 공개적으로 프로퍼티

The localName of the element.
public string $localName
리턴 string

$namespaceURI 공개적으로 프로퍼티

The namespaceURI of this element.
public string $namespaceURI
리턴 string

$xml 공개적으로 프로퍼티

The \DOMElement we contain.
public DOMElement $xml
리턴 DOMElement