Cxml.class.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php
  2. class Cxml extends Think {
  3. public $root='rss';
  4. public $root_attributes=array();
  5. public $charset='utf-8';
  6. public $NodeName= 'item';
  7. public $dom;
  8. private function __constract() {
  9. }
  10. public function outHeader() {
  11. header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
  12. header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
  13. header("Cache-Control: no-cache");
  14. header("Pragma: no-cache");
  15. header("Content-type: text/xml; charset=".$this->charset);
  16. }
  17. public function Cxml($data=null,$file='') {
  18. if (!is_array($data) || count($data) == 0) return false;
  19. $dom = new DOMDocument('1.0',$this->charset);
  20. //添加DOM根元素
  21. $resultElement = $dom->createElement($this->root);
  22. //设置DOM根元素属性
  23. $this->Attribute($this->root_attributes,$dom,$resultElement);
  24. //将数组转换为xml添加到根元素
  25. $this->Array2Xml($dom, $data, $resultElement);
  26. //加入DOM对象
  27. $dom->appendChild($resultElement);
  28. if($file) {
  29. //生成xml文件
  30. $r = $dom->save($file);
  31. return $r ;
  32. }else{
  33. //输出XML显示
  34. $this->outHeader();
  35. return $dom->saveXML();
  36. }
  37. }
  38. public function Xml2Array($file=''){
  39. if(!is_file($file)) return false;
  40. //$dom = new DOMDocument('1.0',$this->charset);
  41. //$array=$this->xml_to_array(simplexml_load_file($file));
  42. $array=$this->simplexml2array(simplexml_load_file($file));
  43. return $array;
  44. }
  45. public function Array2Xml($dom, $data, $result='') {
  46. if (is_array($data)) {
  47. foreach ($data as $key => $value) {
  48. if (is_numeric($key)) {
  49. $NodeName = $value['NodeName']['value'];
  50. if($value['NodeName']['attributes'])$value['attributes'] = $value['NodeName']['attributes'];
  51. unset($value['NodeName']);
  52. } else {
  53. $NodeName = $key;
  54. }
  55. if (!isset($value['value'])) {
  56. $key_Element = $dom->createElement($NodeName);
  57. $result->appendChild($key_Element);
  58. if($value['attributes']){
  59. $this->Attribute($value['attributes'],$dom,$key_Element);
  60. unset($value['attributes']);
  61. }
  62. $this->Array2Xml($dom, $value, $key_Element);
  63. } else {
  64. $key_Element = $dom->createElement($NodeName);
  65. if($value['ishtml']){
  66. $key_Element->appendChild($dom->createCDATASection($value['value']));
  67. }else{
  68. $key_Element->appendChild($dom->createTextNode($value['value']));
  69. }
  70. if($value['attributes']){
  71. $this->Attribute($value['attributes'],$dom,$key_Element);
  72. }
  73. $result->appendChild($key_Element);
  74. }
  75. }
  76. return $result;
  77. }
  78. }
  79. public function Attribute($att,$dom,$key_Element){
  80. $attributes_element='';
  81. foreach ($att as $key =>$rs){
  82. $attributes_element = $dom->createAttribute($key);
  83. $attributes_element->appendChild($dom->createTextNode($rs));
  84. $key_Element->appendChild($attributes_element);
  85. }
  86. }
  87. public function simplexml_to_array($xml) {
  88. $ar = array();
  89. foreach($xml->children() as $k => $v) {
  90. $child = simplexml_to_array($v);
  91. if( count($child) == 0 ) {
  92. $child = (string)$v;
  93. }
  94. foreach( $v->attributes() as $ak => $av ) {
  95. if( !is_array( $child ) ) {
  96. $child = array( "value" => $child );
  97. }
  98. $child[$ak] = (string)$av;
  99. }
  100. if (!in_array($k,array_keys($ar))) {
  101. $ar[$k] = $child;
  102. }else{
  103. if($ar[$k][0]){
  104. $ar[$k][] = $child;
  105. }else{
  106. $ar[$k] = array($ar[$k]);
  107. $ar[$k][] = $child;
  108. }
  109. }
  110. }
  111. return $ar;
  112. }
  113. public function simplexml2array($xml) {
  114. $arXML=array();
  115. $arXML['name']=trim($xml->getName());
  116. $arXML['value']=trim((string)$xml);
  117. $t=array();
  118. foreach($xml->attributes() as $name => $value){
  119. $t[$name]=trim($value);
  120. }
  121. $arXML['attr']=$t;
  122. $t=array();
  123. foreach($xml->children() as $name => $xmlchild) {
  124. if (!in_array($name,array_keys($t))) {
  125. $t[$name] = $this->simplexml2array($xmlchild);
  126. }else{
  127. if(!$t[$name][0]){
  128. $t[$name] = array($t[$name]);
  129. }
  130. $t[$name][]= $this->simplexml2array($xmlchild);
  131. }
  132. }
  133. $arXML['children']=$t;
  134. return($arXML);
  135. }
  136. }
  137. ?>