JSimpleXML/ construct
From Joomla! Documentation
< API15:JSimpleXML
The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description
Constructor.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
__construct($options=null)
Parameter Name | Default Value | Description |
---|---|---|
$options | null |
Defined in
libraries/joomla/utilities/simplexml.php
Importing
jimport( 'joomla.utilities.simplexml' );
Source Body
function __construct($options = null)
{
if(! function_exists('xml_parser_create')) {
return false; //TODO throw warning
}
//Create the parser resource and make sure both versions of PHP autodetect the format.
$this->_parser = xml_parser_create('');
// check parser resource
xml_set_object($this->_parser, $this);
xml_parser_set_option($this->_parser, XML_OPTION_CASE_FOLDING, 0);
if( is_array($options) )
{
foreach( $options as $option => $value ) {
xml_parser_set_option($this->_parser, $option, $value);
}
}
//Set the handlers
xml_set_element_handler($this->_parser, '_startElement', '_endElement');
xml_set_character_data_handler($this->_parser, '_characterData');
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >