最新消息: 新版网站上线了!!!

php利类给微信推送消息

 <?php
header("Content-type: text/html; charset=utf-8"); 
$dir = dirname(__FILE__);
include ($dir."/wechat.class.php");
include ($dir."/weixin_config.php");
$weObj = new Wechat($options);
//$weObj->valid(true);
        $value['content'] = "测试";
$value['openid'] = "oR3Mat_ycCWFihwUE6qmarCv0Kl4";
 
$text = strip_tags($str);
$weObj->sendCustomMessage(
array('touser'=>$value['openid'],
 'msgtype'=>'text',
 'text'=>array('content'=> $value['content'])
 
);
 
 
?> 
wechat.class.php类在百度中下载

转载请注明:谷谷点程序 » php利类给微信推送消息