卓越飞翔博客卓越飞翔博客

卓越飞翔 - 您值得收藏的技术分享站
技术文章11201本站已运行3223

PHP在线获取VIP会员账号API接口代码

PHP在线获取VIP会员账号API接口代码,可以获取迅雷会员帐号、快乐奇艺会员帐号、优酷会员帐号,接口用的打听号网数据,下面是整合的API接口代码。

<?php
function get_psd($id)//伪造ip以获取密码
{
    $ip = rand(1, 254) . '.' . rand(1, 254) . '.' . rand(1, 254) . '.' . rand(1, 254);
    $mainurl = 'http://www.zhanghao.cc/index.php?c=main&a=getpass&id=' . $id;
    $opts = array('http' => array('header' => 'X-Forwarded-For:' . $ip . ''));
    $context = stream_context_create($opts);
    $contents = file_get_contents($mainurl, false, $context);
    //echo $contents;
    exit($contents);
}
$id = $_GET['id'];
if ($id != "") {
    get_psd($id);
}
$ip = rand(1, 254) . '.' . rand(1, 254) . '.' . rand(1, 254) . '.' . rand(1, 254);
$url = 'http://www.zhanghao.cc/';
$opts = array('http' => array('header' => 'Cookie:' . @$cookie . ''));
$context = stream_context_create($opts);
$contents = file_get_contents($url, false, $context);
preg_match_all('/class="table1">(.*?)name="aqy">[\s|\S]*?class="table1">(.*?)name="yk">[\s|\S]*?class="table1">(.*?)"w300 b kr"/', $contents, $match);
preg_match_all('/(.*?)<\/font[\s|\S]*?id="(.*?)" class/', $match[1][0], $xunl);
preg_match_all('/(.*?)<\/font[\s|\S]*?id="(.*?)" class/', $match[2][0], $aiqy);
preg_match_all('/(.*?)<\/font[\s|\S]*?id="(.*?)" class/', $match[3][0], $you);
//echo $match[1][0];
?>

PHP循环获取会员帐号数据


                                            <?php for ($i = 0; $i < count($xunl[1]); $i = $i + 1) {
                                                echo '
    
    帐号:'.$xunl[1][$i].'
    ID:'.$xunl[2][$i].'
    点我查看密码
  
    ';
                                               } ?>
                                                
                                            
                                             <?php for ($i = 0; $i < count($aiqy[1]); $i = $i + 1) {                                                 echo '          帐号:'.$aiqy[1][$i].'     ID:'.$aiqy[2][$i].'     点我查看密码        ';                                                } ?>                                                                                              
                                             <?php for ($i = 0; $i < count($you[1]); $i = $i + 1) {                                                 echo '          帐号:'.$you[1][$i].'     ID:'.$you[2][$i].'     点我查看密码        ';                                                } ?>                                                 

卓越飞翔博客
上一篇: JS强制手机端横屏方法
下一篇: php在线短视频解析下载API源码

相关推荐

留言与评论(共有 0 条评论)
   
验证码:
隐藏边栏