|
- <?php
- //不加参数
- require_once '../Common/Config.php';
- require_once '../Common/Function.php';
- $access_token=getAccesstoken();
-
- $url = "https://api.weixin.qq.com/cgi-bin/menu/create?access_token=".$access_token;
- $jsonmenu = '{
- "button":[
- {
- "name":"专属旅游",
- "sub_button":[
- {
- "type":"view",
- "name":"旅游攻略",
- "url":"http://m.xmwtt.com/tour_list.php?catid=1&type=tl"
- }]
- },
- {
- "name":"旅游预订",
- "sub_button":[
- {
- "type":"view",
- "name":"自由行",
- "url":"http://m.xmwtt.com/tour_list.php"
- },
- {
- "type":"view",
- "name":"周边游",
- "url":"http://m.xmwtt.com/tour_list.php?catid=1"
- },
- {
- "type":"view",
- "name":"租车包车",
- "url":"http://m.xmwtt.com/cars.php"
- },
- {
- "type":"view",
- "name":"特价门票",
- "url":"http://m.xmwtt.com/ticket.php"
- },
- {
- "type":"view",
- "name":"酒店预订",
- "url":"http://m.xmwtt.com/hotels.php"
- }]
- },
- {
- "name":"我的专享",
- "sub_button":[
- {
- "type":"view",
- "name":"私人订制",
- "url":"http://m.xmwtt.com/detail.php?id=10211"
- },
- {
- "type":"view",
- "name":"订单查询",
- "url":"http://bl.xmbailian.com/wx/login.php"
- },
- {
- "type":"view",
- "name":"事假申请",
- "url":"http://bl.xmbailian.com/personleave/login.php"
- },
- {
- "type":"view",
- "name":"BLDSD",
- "url":"http://m.xmwtt.com/bldsd/login.php"
- },
- {
- "type":"view",
- "name":"BLADM",
- "url":"http://m.xmwtt.com/bldsd/admin/login.php"
- }]
- }]
- }';
-
- /*
- ",
- {
- \"type\":\"view\",
- \"name\":\"帮助中心\",
- \"url\":\"http://mp.weixin.qq.com/s?__biz=MzIwNjI0MDAwOQ==&mid=502857753&idx=1&sn=a9039c8508a05f08f41027307296995f&scene=18#wechat_redirect\"
- }"
- */
- $result = http_request($url, $jsonmenu);
- var_dump($result);
|