[PHP] 다른 사이트의 특정부위만 가져오기
로빈아빠
본문
<?
$a = file("http://www.yahoo.co.kr");
$cnt = count($a);
$assa = 0;
for ($i=0;$i<$cnt;$i++) {
if(ereg("<!-- SET1 -->",$a[$i])) $assa = 0;
if($assa==1) {
echo $a[$i];
}
if (ereg("<!-- /SET1 -->",$a[$i])) $assa = 1;
}
?>
$a = file("http://www.yahoo.co.kr");
$cnt = count($a);
$assa = 0;
for ($i=0;$i<$cnt;$i++) {
if(ereg("<!-- SET1 -->",$a[$i])) $assa = 0;
if($assa==1) {
echo $a[$i];
}
if (ereg("<!-- /SET1 -->",$a[$i])) $assa = 1;
}
?>
관련링크
댓글목록
등록된 댓글이 없습니다.