JSimpleXML/loadFile: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Interprets an XML file into an object
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>... |
m preparing for archive only |
||
| (One intermediate revision by the same user not shown) | |||
| Line 2: | Line 2: | ||
Interprets an XML file into an object | Interprets an XML file into an object | ||
===Syntax=== | ===Syntax=== | ||
| Line 57: | Line 55: | ||
</source> | </source> | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=loadFile | category=loadFile | ||
category=JSimpleXML | category=JSimpleXML | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
Latest revision as of 02:06, 25 March 2017
Description
Interprets an XML file into an object
Syntax
loadFile($path, $classname=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $path | Path to xml file containing a well-formed XML document | |
| $classname | null | currently ignored |
Returns
boolean True if successful, false if file empty
Defined in
libraries/joomla/utilities/simplexml.php
Importing
jimport( 'joomla.utilities.simplexml' );
Source Body
function loadFile($path, $classname = null)
{
//Check to see of the path exists
if (!file_exists($path)) {
return false;
}
//Get the XML document loaded into a variable
$xml = trim(file_get_contents($path));
if ($xml == '')
{
return false;
}
else
{
$this->_parse($xml);
return true;
}
}
Examples
Code Examples