欢迎光临 - 我的站长站,本站所有资源仅供学习与参考,禁止用于商业用途或从事违法行为!

搜索:接口

  • QQ情侣头像API接口代码

    QQ情侣头像API接口代码

    很简单的一段QQ情侣头像API接口代码,引流必备,API接口自动调用,无需占用服务器资源。这是我美化的,下面的代码只分享了API调用方法,具体的样式布局需要您自行美化。<script> layui.use(&#39;flow&#...

    js教程5934年前
  • 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教程2244年前
  • PHP检测域名是否被注册接口

    检测你要注册的域名是不是已经注册或者没有被注册接口,数据来源于阿里云接口源码。 <? php$result = whois(&#39;WWW.AEINK.COM&#39;);$xml = simplexml_load_string($result);$code = is_register($xml - > original);if ($code == 0) { echo &#3...

  • PHP抖音视频无水印解析接口

    php无水印解析抖音视频接口,直接返回抖音视频链接地址。<?phpheader("Content-Type: text/html;charset=utf-8");//设置编码error_reporting (E_ALL & ~E_NOTICE);$url = $_GET[&#39;url&#39;];if (empty($_GET[&#39;url&#39;]) || !isset($_GET[&#39...

  • PHP全民k歌作品解析接口

    PHP全民k歌作品解析接口<?phpheader("Access-Control-Allow-Origin:*");header(&#39;Content-type: application/json&#39;);if(isset($_GET[&#39;id&#39;])){//读取全民K歌接口//$html=http_curl(&#39;https://kg.qq.com/cgi/kg_ugc_getdetail?v=4&...

    php教程2094年前
  • PHP获取访客IP和地理位置接口

    PHP获取访客IP和地理位置接口源码<?php$ip = $_GET[&#39;ip&#39;];if(empty($ip)){$ip = get_ip();}//获得访客真实ipfunction get_ip(){if(getenv(&#39;HTTP_CLIENT_IP&#39;)) {$ip = getenv(&#39;HTTP_CLIENT_IP&#39;);} elseif(getenv(&#39;HTTP_...

    php教程654年前
  • PHP检测腾讯域名拦截API接口

    PHP检测腾讯域名拦截API接口<?phpheader(&#39;Access-Control-Allow-Origin:*&#39;);header(&#39;Content-type:application/json; charset=utf-8&#39;);error_reporting(0);!empty($_GET[&#39;url&#39;]) ? $url = $_GET[&#39;url&#39;] : exit(jso...

    php教程1594年前
  • PHP新型冠状病毒API接口代码

    PHP新型冠状病毒API接口代码<?php$a = file_get_contents("https://3g.dxy.cn/newh5/view/pneumonia");$b = getSubstr($a,&#39;window.getTimelineService = &#39;,&#39;}catch(e){}&#39;);//实时热点$c = getSubstr($a,&#39;window.getAreaStat = ...

    php教程1184年前
  • 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...

最新更新