API15:JSimpleXML/loadString
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Interprets a string of XML into an object
Description:JSimpleXML/loadString
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; }
[Edit See Also] SeeAlso:JSimpleXML/loadString
Examples
<CodeExamplesForm />
