JSimpleXML/loadString: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Interprets a string of XML into an object
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<n... |
m preparing for archive only |
||
| (One intermediate revision by the same user not shown) | |||
| Line 3: | Line 3: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
| Line 43: | Line 43: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===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=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API15]] | |||
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