PHP读取XML的方法
<?phpheader("content-type:text/html;charset=utf-8");//设置编码$lists=simplexml_load_file('auction_end_tomorrow.xml');$channel=$lists->channel;$titles=array();$str='';foreach($channel->itemas$items){//有多个user,取得的是数组,循环输出$str.=$items->title."\r\n";;}$k=fopen("d:\\auction_end_tomorrow.txt","a+");//此处用a+,读写方式打开,将文件指针指向文件末尾。如果文件不存在则尝试创建之fwrite($k,$str);fclose($k);?>
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。