Méthode |
Description |
|
__construct ( $name ) |
|
|
__get ( $property ) : string |
Read dynamic property, throw exception for invalid properties. |
|
__isset ( $property ) : boolean |
Define dynamic properties, return false for all other |
|
__set ( $property, $value ) |
Block changes |
|
__toString ( ) : string |
Allow to convert the qualified name object to a string. |
|
__unset ( $property ) |
Block changes |
|
normalizeString ( string $string, string $default = '_' ) : string |
Removes all characters from a string that are not allowed in a xml NCName. An NCName is the
tag name of an xml element without a prefix. |
|
split ( string $name ) : array |
Split an qualified name into its two parts. |
|
validate ( string $name ) : boolean |
Validate a string to be an valid QName |
|