//发送post请求 function request_post($url = '', $param = '') { if (empty($url) || empty($param)) { return false; } $postUrl = $url; $curlPost = $param; $curl = curl_init();//初始化curl curl_setopt($curl, CURLOPT_URL,$postUrl);//抓取指定网页 curl_setopt($curl, CURLOPT_HEADER, 0);//设置header curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);//要求结果为字符串且输出到屏幕上 curl_setopt($curl, CURLOPT_POST, 1);//post提交方式 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);//关闭ssl证书 curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost); $data = curl_exec($curl);//运行curl curl_close($curl); return $data; } //获取access_token public function accessToken(){ $url = 'https://aip.baidubce.com/oauth/2.0/token'; $post_data['grant_type'] = 'client_credentials'; $post_data['client_id'] = '13XuxigtfKGwpXLE0IREsIWb'; $post_data['client_secret'] = 'yKPlvtFhrrkMqS50GgWMIebkseSeiKnZ'; $o = ""; foreach ( $post_data as $k => $v ) { $o.= "$k=" . urlencode( $v ). "&" ; } $post_data = substr($o,0,-1); $res = $this->request_post($url, $post_data); $res1 = json_decode($res); return $res1->access_token; } //验证图片是否合格 public function imgCheck($img){ // $img = $request->file('img')->getPathname(); $token = $this->accessToken(); $url = 'https://aip.baidubce.com/rest/2.0/solution/v1/img_censor/v2/user_defined?access_token=' . $token; $img = file_get_contents($img); $img = base64_encode($img); $bodys = array( 'image' => $img ); $res = $this->request_post($url, $bodys); return $res; }