码迷,mamicode.com
首页 > Web开发 > 详细

php采集电影天堂首页电影下载地址

时间:2014-09-19 13:42:35      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   for   div   sp   

<?php
// 目标url http://www.dytt8.net/
set_time_limit(0);
define(‘SCRIPT_ROOT‘,dirname(__FILE__).‘/‘);

$result_list = array();

$domain = "http://www.dytt8.net";
$html = file_get_contents($domain);
$matchs = array();
preg_match_all("/\<a href=\‘(\/html\/gndy.*)\‘>.*<\/a\>/",$html,$matchs);
if ($matchs[1]) {
    foreach ($matchs[1] as $key => $one) {
        $sub_url = $domain.$one;
        $result = getUrlByPattern($sub_url);
        $result_list[] = $result;
    }
}

function getUrlByPattern($url)
{
    $html = file_get_contents($url);
    preg_match("/ftp:\/\/[^\<\"]*/",$html,$sub_url);
    return $sub_url;
}
?>

晚上想看电影于是写了一段简单的采集,练习一下正则

php采集电影天堂首页电影下载地址

标签:style   blog   http   color   io   ar   for   div   sp   

原文地址:http://www.cnblogs.com/linksgo2011/p/3981170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!