摘要: //获取微信access_token public function access_token(){ $appid ='***********'; $secret = '******************'; $url = "https://api.weixin.qq.com/cgi-bin/to 阅读全文
posted @ 2022-04-24 10:30 早早早点睡觉 阅读(967) 评论(0) 推荐(0)
摘要: $url = "https://api.weixin.qq.com/cgi-bin;//file_get_contents发送get请求 json_decode转换数据 $data = json_decode(file_get_contents($url,true),true); 阅读全文
posted @ 2022-04-24 09:39 早早早点睡觉 阅读(1191) 评论(0) 推荐(0)
摘要: /** * 发送post请求 * @param string $url 请求地址 * @param array $post_data post键值对数据 * @return string */ function send_post( $url , $post_data ) { $postdata = 阅读全文
posted @ 2022-04-24 09:37 早早早点睡觉 阅读(138) 评论(0) 推荐(0)