API15

API15:JSimpleXML/loadString

From Joomla! Documentation

Description

Interprets a string of XML into an object

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

loadString($string, $classname=null)
Parameter Name Default Value Description
$string Well-formed xml string data
$classname null currently ignored

Returns

object

Defined in

libraries/joomla/utilities/simplexml.php

Importing

jimport( 'joomla.utilities.simplexml' );

Source Body

function loadString($string, $classname = null) {
        $this->_parse($string);
        return true;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples