...
|
...
|
@@ -110,42 +110,16 @@ class AdminOrderController extends AdminBaseController |
|
|
$acctoken = $this->getAccessToken();
|
|
|
$url = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=".$acctoken;
|
|
|
$data = array();
|
|
|
$data['touser'] = OPENID;
|
|
|
$data['template_id'] = 模板ID;
|
|
|
$data['url'] = 模板跳转链接;
|
|
|
$data['data'][] = 模板数据;
|
|
|
|
|
|
// {
|
|
|
// "touser":"OPENID",
|
|
|
// "template_id":"ngqIpbwh8bUfcSsECmogfXcV14J0tQlEpBO27izEYtY",
|
|
|
// "url":"http://weixin.qq.com/download",
|
|
|
// "miniprogram":{
|
|
|
// "appid":"xiaochengxuappid12345",
|
|
|
// "pagepath":"index?foo=bar"
|
|
|
// },
|
|
|
// "data":{
|
|
|
// "first": {
|
|
|
// "value":"恭喜你购买成功!",
|
|
|
// "color":"#173177"
|
|
|
// },
|
|
|
// "keyword1":{
|
|
|
// "value":"巧克力",
|
|
|
// "color":"#173177"
|
|
|
// },
|
|
|
// "keyword2": {
|
|
|
// "value":"39.8元",
|
|
|
// "color":"#173177"
|
|
|
// },
|
|
|
// "keyword3": {
|
|
|
// "value":"2014年9月22日",
|
|
|
// "color":"#173177"
|
|
|
// },
|
|
|
// "remark":{
|
|
|
// "value":"欢迎再次购买!",
|
|
|
// "color":"#173177"
|
|
|
// }
|
|
|
// }
|
|
|
// }
|
|
|
$data['touser'] = 'oxr6j0gF6bDVDEOG_-Ttz2cRUbVQ';//OPENID
|
|
|
$data['template_id'] = 'YUC7jOhDQ_kWRumosx_aLFh_ReKjcrZOdbV-zVfRf14';
|
|
|
$data['url'] = 'http://yunzhi07.com/';//模板跳转链接
|
|
|
$data['data']['first']['value'] = '您好!你发布的职位通过审核。';//模板数据
|
|
|
$data['data']['keyword1']['value'] = '程序员';//模板数据
|
|
|
$data['data']['keyword2']['value'] = '一步人才网';//模板数据
|
|
|
$data['data']['keyword3']['value'] = '3人';//模板数据
|
|
|
$data['data']['keyword4']['value'] = '5000-6000元/月';//模板数据
|
|
|
$data['data']['keyword5']['value'] = '0471-3388866';//模板数据
|
|
|
$data['data']['remark']['value'] = '如有其他问题,请及时与我们联系!';//模板数据
|
|
|
|
|
|
|
|
|
|
...
|
...
|
@@ -156,11 +130,11 @@ class AdminOrderController extends AdminBaseController |
|
|
curl_setopt($ch, CURLOPT_HEADER, 0);//设置header
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求结果为字符串且输出到屏幕上
|
|
|
curl_setopt($ch, CURLOPT_POST, 1);//post提交方式
|
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
|
|
|
$data = curl_exec($ch);//运行curl
|
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
|
|
|
$res = curl_exec($ch);//运行curl
|
|
|
|
|
|
|
|
|
$a = file_get_contents($url);
|
|
|
$a = file_get_contents($res);
|
|
|
echo "<pre/>";
|
|
|
print_r($a);
|
|
|
die;
|
...
|
...
|
|