说我有这样的数组:
<?php
$colors=array();
$colors[0]['id']=1;
$colors[0]['color']='blue';
$colors[1]['id']=2;
$colors[1]['color']='green';
......
?>
将整个数组转换为XML的最简单方法是什么?
答案 0 :(得分:0)
现场问题数据的一些工作示例: https://stackoverflow.com/a/14143759/367456
原始答案如下:
看看这些预定义的实现:
http://snipplr.com/view/3491/convert-php-array-to-xml-or-simple-xml-object-if-you-wish/
答案 1 :(得分:0)
如果您还需要将数组转换为XML的属性支持,则可以使用此实现:http://www.lalit.org/lab/convert-php-array-to-xml-with-attributes/
对于属性支持,它要求您以特定方式构造数组。对于没有属性的xml,您可以直接将任何数组传递给函数并获取XML
答案 2 :(得分:0)
你可以创建一个只输出它的简单函数。例如,将带有元素的数组传递给函数,并告诉父元素的名称(文档的根元素)和每个元素的名称。
我假设父级为colors
,每个元素为color
。
我还假设命名键是color
元素的子元素:
function xml_from_indexed_array($array, $parent, $name) {
echo '<?xml version="1.0"?>', "\n";
echo "<$parent>\n";
foreach ($array as $element) {
echo " <$name>\n";
foreach ($element as $child => $value) {
echo " <$child>$value</$child>\n";
}
echo " </$name>\n";
}
echo "</$parent>\n";
}
正如您所看到的,这非常简单,只是迭代所有元素。
用法示例:
<?php
$colors = array();
$colors[0]['id'] = 1;
$colors[0]['color'] = 'blue';
$colors[1]['id'] = 2;
$colors[1]['color'] = 'green';
xml_from_indexed_array($colors, 'colors', 'color');
示例输出:
<?xml version="1.0"?>
<colors>
<color>
<id>1</id>
<color>blue</color>
</color>
<color>
<id>2</id>
<color>green</color>
</color>
</colors>
如果您有更深层嵌套的更高级数组结构,您可能希望以递归方式解决此问题。一些相关的问题:
答案 3 :(得分:0)
我花了很多时间才做到这一点。我真的不敢相信PHP没有为你做这个功能。无论如何,我希望这对某人有帮助。享受!
<?php
class Xml
{
public function getXmlFromArray($value, \SimpleXMLElement &$xmlElement, $entity, $starting = null)
{
$handleValue = function($value){
$entityHandler = $this->getEntityHandler();
if($entityHandler && $entityHandler instanceof \Closure){
$value = $entityHandler($value);
}
if(is_string($value)){
$value = htmlspecialchars($value);
}
return $value;
};
$addChild = function($name, $value, &$subNode = null)use(&$xmlElement, $handleValue, $entity){
if(is_array($value)){
if(!$subNode instanceof \SimpleXMLElement){
$currentKey = key($value);
$initialValue = null;
if(is_numeric($currentKey)){
if(!is_array($value[$currentKey])){
$initialValue = $value[$currentKey];
unset($value[$currentKey]);
}
}
$subNode = $xmlElement->addChild($this->cleanXmlTagName($name), $initialValue);
}
$this->getXmlFromArray($handleValue($value), $subNode, $name);
} else {
$xmlElement->addChild($this->cleanXmlTagName($name), $handleValue($value));
}
};
if(is_array($value))
{
if(is_numeric(key($value))){
$setSubNodePrimitiveValue = function($value)use(&$xmlElement, $entity, $handleValue){
$value = $handleValue($value);
$children = $xmlElement->children();
$children[] = $value;
};
foreach ($value as $item)
{
if(!is_array($item)){
$setSubNodePrimitiveValue($item);
} else {
if($starting === true){
$addChild($entity, $item);
} else {
$addChild($entity, $item, $xmlElement);
}
}
}
} else {
foreach ($value as $subEntity => $subEntityItem)
{
if(is_array($subEntityItem) && is_array(current($subEntityItem)) && is_numeric(key($subEntityItem))){
$this->getXmlFromArray($subEntityItem, $xmlElement, $subEntity, true);
continue;
}
$addChild($subEntity, $subEntityItem);
}
}
} else {
$xmlElement->addChild($this->cleanXmlTagName($entity), $handleValue($value));
}
}
public function cleanXmlTagName(string $tagName)
{
if(is_numeric($tagName[0])){
$tagName = '_'.$tagName;
}
return preg_replace('/[^A-Za-z0-9.\-_]/', '_', $tagName);
}
/**
* @param array $array
* @param string $openingTag
* @param string $entity
* @param string $nameSpace
* @param bool $isPrefixed
* @return \SimpleXMLElement
*/
public function generateXmlFromArray(array $array, string $openingTag, string $entity, $nameSpace = '', $isPrefixed = false)
{
$xmlString = '<'.$openingTag.'></'.$openingTag.'>';
$xml = new \SimpleXMLElement($xmlString, LIBXML_NOERROR, false, $nameSpace, $isPrefixed);
$this->getXmlFromArray($array, $xml, $entity, true);
return $xml;
}
/**
* @param string $xml
* @return bool
*/
public function validateXml(string $xml)
{
$dom = new \DOMDocument();
$dom->loadXML($xml);
return $dom->validate();
}
public function loadXmlPathAsArray(string $xmlPath)
{
$xml = simplexml_load_file($xmlPath);
$array = json_decode(json_encode($xml), TRUE);
return (array)$array;
}
/**
* @param string $xmlString
* @return array
*/
public function loadXmlStringAsArray(string $xmlString)
{
$array = (array) @simplexml_load_string($xmlString);
if(!$array){
$array = (array) @json_decode($xmlString, true);
} else{
$array = (array)@json_decode(json_encode($array), true);
}
return $array;
}
/**
* @param string $xmlString
* @return \SimpleXMLElement
*/
public function loadXmlString(string $xmlString)
{
return @simplexml_load_string($xmlString);
}
}