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
Afficher le fichier Open project: microweber/microweber

Protected Properties

Свойство Type Description
$qp

Méthodes publiques

Méthode 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 méthode

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

appendElement() public méthode

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

cdata() public méthode

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.
Résultat 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 méthode

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}.
Résultat 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 méthode

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 méthode

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

pi() public méthode

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

schema() public méthode

public schema ( $file )

toXml() public méthode

public toXml ( )

Property Details

$qp protected_oe property

protected $qp