file_get_content: 1개의 글
[PHP][TIP] http 302 (redirect) 일 때 curl 사용하기
curl로 html 소스 코드를 가져오려고 하는데 http 302(redirect) 문제로 redirect된 페이지의 소스코드를 가져올 때 다음과 같이 하면 된다. $url = "YOUR URL"; $res = array(); $options = array( CURLOPT_RETURNTRANSFER => true, // return web page CURLOPT_HEADER => false, // do not return headers CURLOPT_FOLLOWLOCATION => true, // follow redirects CURLOPT_USERAGENT => "spider", // who am i CURLOPT_AUTOREFERER => true, // set referer on redirect C..
PHP/php
2021. 1. 6. 16:53