removing tabs
This commit is contained in:
parent
77daa29c2c
commit
c929891962
1 changed files with 17 additions and 17 deletions
|
@ -33,25 +33,25 @@ class Doctrine_Parser_Xml extends Doctrine_Parser
|
||||||
{
|
{
|
||||||
public function arrayToXml($data, $rootNodeName = 'data', $xml = null)
|
public function arrayToXml($data, $rootNodeName = 'data', $xml = null)
|
||||||
{
|
{
|
||||||
if ($xml === null) {
|
if ($xml === null) {
|
||||||
$xml = new SimpleXmlElement("<?xml version=\"1.0\" encoding=\"utf-8\"?><$rootNodeName/>");
|
$xml = new SimpleXmlElement("<?xml version=\"1.0\" encoding=\"utf-8\"?><$rootNodeName/>");
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach($data as $key => $value)
|
foreach($data as $key => $value)
|
||||||
{
|
{
|
||||||
if (is_array($value)) {
|
if (is_array($value)) {
|
||||||
$node = $xml->addChild($key);
|
$node = $xml->addChild($key);
|
||||||
|
|
||||||
$this->arrayToXml($value, $rootNodeName, $node);
|
$this->arrayToXml($value, $rootNodeName, $node);
|
||||||
} else {
|
} else {
|
||||||
$value = htmlentities($value);
|
$value = htmlentities($value);
|
||||||
|
|
||||||
$xml->addChild($key, $value);
|
$xml->addChild($key, $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $xml->asXML();
|
return $xml->asXML();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function dumpData($array, $path = null)
|
public function dumpData($array, $path = null)
|
||||||
|
@ -111,4 +111,4 @@ class Doctrine_Parser_Xml extends Doctrine_Parser
|
||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue