Ejemplo n.º 1
0
<?php

require_once '/system/model/weixin.class.php';
require_once '/system/model/db_fns.php';
$weixin = new class_weixin();
$cdkey = '1393454493115070616183179801';
$carnum = '88888888';
$wxid = 'oikUKt1666QxU9gZrUu7OgpbP9OE';
$arrivetime = date("m月d日 H时i分");
$arriveposition = "西客站";
$username = '******';
$kindname = '原木';
//public function sendtemplatemsg($wxid,$cdkey,$username,$carnum,$arrivetime,$kindname,$arriveposition)
$result = $weixin->sendtemplatemsg($wxid, $cdkey, $username, $carnum, $arrivetime, $kindname, $arriveposition);
if ($result) {
    echo "<script> alert('scuccess');</script>;";
} else {
    echo "<script> alert('error');</script>;";
}
Ejemplo n.º 2
0
 function sendwxmsg()
 {
     $cdkey = $this->cdkey;
     $carnum = $this->carnum;
     if ($this->contactphone != 0) {
         if ($this->getusername($this->contactphone)) {
             $wxid = $this->wxid;
             $username = $this->username;
             $this->getspotpositionname($this->spotpositionid);
             $arriveposition = $this->spotpositionname;
             $arrivetime = date("m月d日 H时i分");
             $kindname = '';
             if ($this->kindid != 0) {
                 if ($this->getkindname($this->kindid)) {
                     $kindname = $this->kindname;
                 }
             }
             $weixin = new class_weixin();
             $result = $weixin->sendtemplatemsg($wxid, $cdkey, $username, $carnum, $arrivetime, $kindname, $arriveposition);
             if ($result) {
                 return true;
             } else {
                 $result = $weixin->sendtemplatemsg($wxid, $cdkey, $username, $carnum, $arrivetime, $kindname, $arriveposition);
                 if ($result) {
                     return true;
                 } else {
                     return false;
                 }
             }
         } else {
             return false;
         }
     } else {
         return false;
     }
 }