php 파싱이 이상하게 되는데..
본문
function get_output_url($url) {
// create curl resource
$ch = curl_init();
// set url
curl_setopt($ch, CURLOPT_URL, $url);
//return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// $output contains the output string
$output = curl_exec($ch);
// close curl resource to free up system resources
curl_close($ch);
return $output;
}
$parse = get_output_url('http://allstar.kovo.co.kr/voteResult.asp');
$html = str_get_html($parse);
echo $html;
위와 같이 하면 다른 사이트는 제대로 파싱이 되던데
배구 올스타 투표현황페이지는 파싱이 안되서요
혹시 파싱을 막은건지
아니면 제가 잘못한건가요?
로그인을 해야 볼수있는 페이지라서 파싱이 안되는 건가요?
!-->
답변을 작성하시기 전에 로그인 해주세요.