elseif(strtolower($postObj->MsgType)=='text' && trim($postObj->Content) == '单图文'){//单图文
$toUser=$postObj->FromUserName;
$fromUser=$postObj->toUserName;
$time=time();
$msgType='news';
$arr= array(
array(
'title'=>'小刺猬',
'description'=>'我是一只小刺猬',
'picUrl'=>'http://localhost/tlweixin/public/images/rabbit.jpg',
'url'=>'http://www.imooc.com',
),
);
$template="<xml>
<ToUserName><![CDATA[%s]]></ToUserName>
<FromUserName><![CDATA[%s]]></FromUserName>
<CreateTime>%s</CreateTime>
<MsgType><![CDATA[%s]]></MsgType>
<ArticleCount>".count($arr)."</ArticleCount>
<Articles>";
foreach($arr as $key=>$value){
$template .="<item>
<Title><![CDATA[".$value['title']."]]></Title>
<Description><![CDATA[".$value['description']."]]></Description>
<PicUrl><![CDATA[".$value['picUrl']."]]></PicUrl>
<Url><![CDATA[".$value['url']."]]></Url>
</item>";
}
$template .="</Articles>
</xml>";
echo sprintf($template,$toUser,$fromUser,$time,$msgType);