Xcxmsg.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. /**
  3. * 客服消息
  4. * Author: Zhiqiang Guo
  5. * Date: 2019/8/9
  6. * Time: 18:03
  7. */
  8. class Xcxmsg
  9. {
  10. /*
  11. * curl
  12. *
  13. * @author Zhiqiang Guo
  14. * @param int params
  15. * @access public
  16. */
  17. public function curl ($data,$url)
  18. {
  19. if (empty($json) || empty($url)) return false;
  20. $curl = curl_init();
  21. curl_setopt($curl, CURLOPT_URL, $url);
  22. curl_setopt($curl, CURLOPT_POST, 1);
  23. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  24. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
  25. curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
  26. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  27. $output = curl_exec($curl);
  28. if (curl_errno($curl)) {
  29. echo 'Errno' . curl_error($curl);//捕抓异常
  30. }
  31. curl_close($curl);
  32. return $output;
  33. }
  34. /*
  35. * 上传媒体文件
  36. *
  37. * @author Zhiqiang Guo
  38. * @param int params
  39. * @access public
  40. */
  41. public function upload ($data)
  42. {
  43. $accessToken = $this->getAccessToken();
  44. $url = "https://api.weixin.qq.com/cgi-bin/media/upload?access_token=" . $accessToken;
  45. $res = $this->curl($data, $url);
  46. if ($res) {
  47. $res = json_decode($res, true);
  48. } else {
  49. return false;
  50. }
  51. return $res['media_id'] ?? false;
  52. }
  53. /*
  54. * access_token
  55. *
  56. * @author Zhiqiang Guo
  57. * @param int params
  58. * @access public
  59. */
  60. public function getAccessToken($data)
  61. {
  62. $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' . $data['AppID'] . '&secret=' . $data['AppSecret'];
  63. $weixin = file_get_contents($url);
  64. $jsondecode = json_decode($weixin);
  65. $array = get_object_vars($jsondecode);
  66. return $array['access_token']??'';
  67. }
  68. }