PHP Class QueryPath\Extension\QPXML

See also: QueryPath::Extension
See also: QPXML
Author: M Butcher ([email protected])
Author: Xander Guzman ([email protected])
Inheritance: implements QueryPath\Extension
Mostrar archivo Open project: microweber/microweber

Protected Properties

Property Type Description
$qp

Public Methods

Method Description
__construct ( QueryPath\Query $qp )
appendElement ( string $text ) Append an element.
cdata ( string $text = null ) : mixed Get or set a CDATA section.
comment ( string $text = null ) : mixed Get or set a comment.
createElement ( string $text, string $nsUri = null ) Create an element with the given namespace.
createNilElement ( string $text, string $value ) Create a NIL element.
pi ( $prefix = null, $text = null ) Get or set a processor instruction.
schema ( $file )
toXml ( )

Method Details

__construct() public method

public __construct ( QueryPath\Query $qp )
$qp QueryPath\Query

appendElement() public method

Append an element.
public appendElement ( string $text )
$text string

cdata() public method

If this is given text, it will create a CDATA section in each matched element, setting that item's value to $text. If no parameter is passed in, this will return the first CDATA section that it finds in the matched elements.
See also: comment()
See also: QueryPath::text()
See also: QueryPath::html()
public cdata ( string $text = null ) : mixed
$text string The text data to insert into the current matches. If this is NULL, then the first CDATA will be returned.
return mixed If $text is not NULL, this will return a {@link QueryPath}. Otherwise, it will return a string. If no CDATA is found, this will return NULL.

comment() public method

This function is used to get or set comments in an XML or HTML document. If a $text value is passed in (and is not NULL), then this will add a comment (with the value $text) to every match in the set. If no text is passed in, this will return the first comment in the set of matches. If no comments are found, NULL will be returned.
See also: cdata()
public comment ( string $text = null ) : mixed
$text string The text of the comment. If set, a new comment will be created in every item wrapped by the current {@link QueryPath}.
return mixed If $text is set, this will return a {@link QueryPath}. If no text is set, this will search for a comment and attempt to return the string value of the first comment it finds. If no comment is found, NULL will be returned.

createElement() public method

Create an element with the given namespace.
public createElement ( string $text, string $nsUri = null )
$text string
$nsUri string The namespace URI for the given element.

createNilElement() public method

Create a NIL element.
public createNilElement ( string $text, string $value )
$text string
$value string

pi() public method

Get or set a processor instruction.
public pi ( $prefix = null, $text = null )

schema() public method

public schema ( $file )

toXml() public method

public toXml ( )

Property Details

$qp protected_oe property

protected $qp