다른 사이트의 특정 부분만 가져오고 싶습니다.
본문
예시 사이트는 여긴데
http://www.gamejob.co.kr/main/home
이 사이트의 Emperor 채용관 부분만 가져오고 싶은데
<div style="position:absolute; top:0; left:0px;">
<iframe src="http://www.gamejob.co.kr/main/home" width="860" height="840" scrolling="no" frameborder="0"></iframe>
</div>
이렇게 하니까 전체가 불러와져서요..
이미지 부분만 가져오려면 어떻게 해야될까요..?
도움될만한 팁이라도 부탁드립니다.
답변 2
<?php
header("Content-Type: text/html; charset=UTF-8");
include_once "simple_html_dom.php";
$url = "http://www.gamejob.co.kr/main/home";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$res = curl_exec($ch);
$html = new simple_html_dom();
$html->load($res);
?>
<article class="boothList EmperorWrap" id="emperor_article">
<?php echo $html->find("article#emperor_article", 0); ?>
</article>
이렇게 하시면 해당 부분만 갖고 올 수 있습니다.
!-->
답변을 작성하시기 전에 로그인 해주세요.