You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

64 lines
1.8 KiB

  1. <?php
  2. //不加参数
  3. require_once '../Common/Config.php';
  4. require_once '../Common/Function.php';
  5. $access_token=getAccesstoken();
  6. $url = "https://api.weixin.qq.com/cgi-bin/menu/create?access_token=".$access_token;
  7. $jsonmenu = '{
  8. "button":[
  9. {
  10. "name":"出行预订",
  11. "type":"view",
  12. "url":"http://wx.zhizhuchuxing.com/weixin2/submit_login.php"
  13. },
  14. {
  15. "name":"奔驰专线",
  16. "type":"view",
  17. "url":"http://wx.zhizhuchuxing.com/ZZDZ2/dzbs_login.php"
  18. },
  19. {
  20. "name":"更多服务",
  21. "sub_button":[
  22. {
  23. "type":"view",
  24. "name":"我的订单",
  25. "url":"http://wx.zhizhuchuxing.com/ZZDZ2/dzbs_list.php"
  26. },
  27. {
  28. "type":"view",
  29. "name":"绑定订单",
  30. "url":"http://wx.zhizhuchuxing.com/weixin2/bind_order.html"
  31. },
  32. {
  33. "type":"view",
  34. "name":"我的行程",
  35. "url":"http://wx.zhizhuchuxing.com/weixin2/run_list_login.php"
  36. },
  37. {
  38. "type":"view",
  39. "name":"蜘蛛分销",
  40. "url":"http://sfx.zhizhuchuxing.com/wchat_fx/login.html"
  41. },
  42. {
  43. "type":"view",
  44. "name":"品牌介绍",
  45. "url":"http://mp.weixin.qq.com/s?__biz=MzIwNjI0MDAwOQ==&mid=502857840&idx=1&sn=3588fceca936c75cf5bede34b5dafe76#rd"
  46. }]
  47. }]
  48. }';
  49. /*
  50. ",
  51. {
  52. \"type\":\"view\",
  53. \"name\":\"帮助中心\",
  54. \"url\":\"http://mp.weixin.qq.com/s?__biz=MzIwNjI0MDAwOQ==&mid=502857753&idx=1&sn=a9039c8508a05f08f41027307296995f&scene=18#wechat_redirect\"
  55. }"
  56. */
  57. $result = http_request($url, $jsonmenu);
  58. var_dump($result);