"this is first item", "Description"=>"this is first item description", "PicUrl"=>"http://img4.imgtn.bdimg.com/it/u=2943793272,3641314298&"/> "this is first item", "Description"=>"this is first item description", "PicUrl"=>"http://img4.imgtn.bdimg.com/it/u=2943793272,3641314298&">
Home > Backend Development > PHP Tutorial > xml-微信多图文foreach验证失败,求找茬!头要炸了!

xml-微信多图文foreach验证失败,求找茬!头要炸了!

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-02 11:27:46
Original
980 people have browsed it

xmlphp微信

请问这段代码哪里有错?

<code> $newsArr = array(         array("Title"=>"this is first item",            "Description"=>"this is first item description",            "PicUrl"=>"http://img4.imgtn.bdimg.com/it/u=2943793272,3641314298&fm=21&gp=0.jpg",            "Url"=>"http://www.baidu.com"         ),         array("Title"=>"this is second item",             "Description"=>"this is second item description",             "PicUrl"=>"http://img2.imgtn.bdimg.com/it/u=945726929,542696667&fm=21&gp=0.jpg",             "Url"=>"http://www.baidu.com"         ),         array("Title"=>"this is thired",            "Description"=>"this is thired",            "PicUrl"=>"http://img1.imgtn.bdimg.com/it/u=2783016379,35786742&fm=21&gp=0.jpg",            "Url"=>"http://www.baidu.com"         ));foreach ($newsArr as $key => $value) {   $itemstr .= "         <item>         <title></title>         <description></description>         <picurl></picurl>         <url></url>         <item>";}   $result = "<xml>         <tousername></tousername>         <fromusername></fromusername>         <createtime>%s</createtime>         <msgtype></msgtype>         <articlecount>".count($newsArr)."</articlecount>         <articles>".$itemstr."</articles>         </xml>";   $newsInfo = sprintf($result, $fromUser , $toUser , time());   echo $newsInfo;</item></item></code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template