時間:2023-02-05 15:00:01 | 來源:建站知識
時間:2023-02-05 15:00:01 來源:建站知識
微信域名檢測API接口的應(yīng)用場景:$url = "http://api.monkeyapi.com";$params = array('appkey' =>'appkey',//您申請的APPKEY'url' =>'www.monkeyapi.com',//需要查詢的網(wǎng)站); $paramstring = http_build_query($params);$content = Curl($url, $paramstring);$result = json_decode($content, true);if($result) { var_dump($result);}else { //請求異常}/** * 請求接口返回內(nèi)容 * @param string $url [請求的URL地址] * @param string $params [請求的參數(shù)] * @param int $ipost [是否采用POST形式] * @return string*/function Curl($url, $params = false, $ispost = 0){ $httpInfo = array(); $ch = curl_init(); curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_TIMEOUT, 60); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); if ($ispost) { curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $params); curl_setopt($ch, CURLOPT_URL, $url); }else { if ($params) { curl_setopt($ch, CURLOPT_URL, $url.'?'.$params); } else { curl_setopt($ch, CURLOPT_URL, $url); } } $response = curl_exec($ch); if ($response === FALSE) { //echo "cURL Error: " . curl_error($ch); return false; } $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); $httpInfo = array_merge($httpInfo, curl_getinfo($ch)); curl_close($ch); return $response;}
關(guān)鍵詞:攔截,官方
微信公眾號
版權(quán)所有? 億企邦 1997-2025 保留一切法律許可權(quán)利。