用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php dom增加xml节点函数

时间:2015-01-23  来源:西部数据  作者:西部数据
  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 
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门