JSimpleXML/loadString: Difference between revisions
From Joomla! Documentation
m removing red link to edit, no existant pages |
m preparing for archive only |
||
| Line 48: | Line 48: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=loadString | category=loadString | ||
category=JSimpleXML | category=JSimpleXML | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 01:08, 25 March 2017
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