PHP XML和数组互相转换详解
程序员文章站
2024-04-02 11:10:16
php xml和数组互相转换
//数组转xml
function arraytoxml($arr)
{
$xml = "
php xml和数组互相转换
//数组转xml function arraytoxml($arr) { $xml = "<xml>"; foreach ($arr as $key=>$val) { if (is_numeric($val)){ $xml.="<".$key.">".$val."</".$key.">"; }else{ $xml.="<".$key."><![cdata[".$val."]]></".$key.">"; } } $xml.="</xml>"; return $xml; } //将xml转为array function xmltoarray($xml) { //禁止引用外部xml实体 libxml_disable_entity_loader(true); $values = json_decode(json_encode(simplexml_load_string($xml, 'simplexmlelement', libxml_nocdata)), true); return $values; }
五个在xml文件中预定义好的实体:
< |
< |
小于号 |
> |
> |
大于号 |
& |
& |
和 |
' |
' |
单引号 |
" |
" |
双引号
|
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
上一篇: 关于php中一些字符串总结
下一篇: PHP之十六个魔术方法详细介绍