1. 程式人生 > >微信域名檢測,PHP隨機獲取微信能正常訪問的域名

微信域名檢測,PHP隨機獲取微信能正常訪問的域名

curl return cti pan tran and .html col exe

用戶名和KEY請到www.weixin139.com獲取

<?php
$url = "https://api.weixin139.com/weixin/domain/auto_check_list?user=xxx&key=xxx&type=1";
$con = get_msg($url);
$data = json_decode($con,true);
$count = count($data)-1;
$rand = rand(0,$count);
echo $data[$rand][‘domain‘];




function get_msg($url){
        $ch
= curl_init(); curl_setopt($ch,CURLOPT_TIMEOUT,1); curl_setopt($ch,CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false); curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false); $data = curl_exec($ch);
if($data){ curl_close($ch); return $data; }else { $error = curl_errno($ch); curl_close($ch); return false; } }

來源:http://www.weixin139.com/api_help.html

微信域名檢測,PHP隨機獲取微信能正常訪問的域名