Example #1
0
 /**
  * 生成xml文件
  */
 function createXml()
 {
     $this->load->library('XMLParserLib');
     echo '<?xml version=\'1.0\' encoding=\'UTF-8\' ?>';
     $xml = new XMLTag('movies', array('version' => '1.0', 'type' => 'documentary', 'encoding' => 'UTF-8'));
     $xml->AddChild('movie', array(), 1);
     echo $xml->GetXML();
 }