스크래핑,파싱
php 목록 (리스트) 파싱 소스
xemaker
2018. 9. 7. 07:59
<?
include "Snoopy.class.php";
$snoopy = new Snoopy;
$start_page=1;
$end_page=1;
$submit_url = "http://localhost/torrentboza/list.html";
$snoopy->fetch($submit_url);
$txt=$snoopy->results;
$p="~<a\shref=\"(.*)\" class=\"item-subject\"~";
preg_match_all($p,$txt,$match_link);
$match_link=$match_link[1];
foreach($match_link as &$value){
$value=htmlspecialchars_decode($value);
}
$match_link=array_reverse($match_link);