VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php dom增加xml节点函数

  1.    function: addcomment 
  2.      
  3.     adds a comment. 
  4.      
  5.     parameters: 
  6.       $data - associative array of data, must contain 'name''website''comment''date''user_ip''user_agent'and 'spam'
  7.        
  8.     returns: 
  9.       id of the new comment.  
  10.     
  11.    <?xml version="1.0" encoding="utf-8"?> 
  12. <!doctype messages [ 
  13. <!element messages (message)*> 
  14. <!element message (name , website? , comment , date , user_ip? , user_agent? , spam)> 
  15. ]> 
  16. <messages> 
  17. </messages> 
  18.   */ 
  19.   public function addcomment($data) { 
  20.     $xml = new simplexmlelement($this->getcontents(true)); 
  21.     $message = $xml->addchild('message'); 
  22.     $id = $this->generateid(); 
  23.     $message->addattribute('mid'$id); 
  24.     foreach ($data as $key => $value) { 
  25.       $message->addchild($key, htmlspecialchars($value, ent_quotes)); 
  26.     } 
  27.     $this->putcontents($xml->asxml()); 
  28.      
  29.     return $id
  30.   }//开源代码phpfensi.com 
  31.  

出处:http://www.phpfensi.com/php/20140820/4557.html


相关教程