码迷,mamicode.com
首页 > Web开发 > 详细

php array(object) 与xml相互转换

时间:2014-08-30 20:17:29      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   文件   cti   sp   on   ad   c   


private function _array_to_xml($source, $charset=‘utf-8‘){
$array = json_decode($source);
$pre = ‘<?xml version="1.0" ?>‘;
$xml = $pre. $this->_change($array);
return $xml;
}

private function _change($source){
$str = ‘‘;
foreach ($source as $k => $v){
$str = $str."<".$k.">";

if(is_array($v) || is_object($v)){
$str = $str. $this->_change($v);
}else{
$str = $str.$v;
}
$str = $str."</".$k.">";
}
return $str;
}

 

public function xml_to_json($source) {
if(is_file($source)){ //传的是文件,还是xml的string的判断
$xml_array=simplexml_load_file($source);
}else{
$xml_array=simplexml_load_string($source);
}
$json = json_encode($xml_array); //php5,以及以上,如果是更早版本,請下載JSON.php
return $json;
}


php array(object) 与xml相互转换

标签:io   ar   for   文件   cti   sp   on   ad   c   

原文地址:http://www.cnblogs.com/barfoo/p/3946742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!