接口
QQ情侣头像API代码
很简单的一段QQ情侣头像API代码,引流必备,API自动调用,无需占用服务器资源。这是我美化的,下面的代码只分享了API调用方法,具体的样式布局需要您自行美化。<script> layui.use('flow&#...
PHP超级Ping网站源码
<?php$url = $_GET['url'];$result = file_get_contents("https://ping.tx7.co/ping.php?host=".$url);header("Content-Type:text/html;charset=UTF-8");print_r($result);if ($arr['code']==1) {}?>
PHP检测域名是否被注册
检测你要注册的域名是不是已经注册或者没有被注册,数据来源于阿里云源码。 <? php$result = whois('WWW.AEINK.COM');$xml = simplexml_load_string($result);$code = is_register($xml - > original);if ($code == 0) { echo ...
PHP抖音视频无水印解析
php无水印解析抖音视频,直接返回抖音视频链接地址。<?phpheader("Content-Type: text/html;charset=utf-8");//设置编码error_reporting (E_ALL & ~E_NOTICE);$url = $_GET['url'];if (empty($_GET['url']) || !isset($_GET['...
PHP全民k歌作品解析
PHP全民k歌作品解析<?phpheader("Access-Control-Allow-Origin:*");header('Content-type: application/json');if(isset($_GET['id'])){//读取全民K歌//$html=http_curl('https://kg.qq.com/cgi/kg_ugc_getdetail?v=4&...
PHP获取访客IP和地理位置
PHP获取访客IP和地理位置源码<?php$ip = $_GET['ip'];if(empty($ip)){$ip = get_ip();}//获得访客真实ipfunction get_ip(){if(getenv('HTTP_CLIENT_IP')) {$ip = getenv('HTTP_CLIENT_IP');} elseif(getenv('HTTP_...
PHP检测腾讯域名拦截API
PHP检测腾讯域名拦截API<?phpheader('Access-Control-Allow-Origin:*');header('Content-type:application/json; charset=utf-8');error_reporting(0);!empty($_GET['url']) ? $url = $_GET['url'] : exit(jso...
PHP新型冠状病毒API代码
PHP新型冠状病毒API代码<?php$a = file_get_contents("https://3g.dxy.cn/newh5/view/pneumonia");$b = getSubstr($a,'window.getTimelineService = ','}catch(e){}');//实时热点$c = getSubstr($a,'window.getAreaStat = ...
PHP抖音解析下载API代码
PHP抖音解析下载API代码<?phpfunction GetVideos($url) {$ch = curl_init();curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);curl_setopt($ch, CURLOPT_HEADER, false);curl_setopt($ch, CURLOPT_SSL_VER...