Detailed explanation of how PHP randomly obtains domain names that are not blocked by WeChat (WeChat domain name detection)

黄舟
Release: 2023-03-06 18:58:02
Original
2563 people have browsed it

This article mainly introduces PHP to randomly obtain domain names that are not blocked by WeChat (WeChat domain name detection). It is very good and has reference value. Friends in need can refer to

username and KEY Please go to www.weixin139.com to get

<?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][&#39;domain&#39;];
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;
 }
}
Copy after login

The above is the detailed content of Detailed explanation of how PHP randomly obtains domain names that are not blocked by WeChat (WeChat domain name detection). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template