PHP) Proxy 서버를 이용해서 원격 웹서버 내용 갖고 오기
참고 : http://riverold.ecplaza.net/river/287
- function get_contents($url, $proxy = "") {
- //이 부분은 반드시 필요하지는 않지만,
- //User-Agent를 체크하는 사이트가 있다면 필요함.
- $header = "User-Agent: Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;)";
- if (emptyempty($proxy)) {
- // proxy를 사용하지 않음
- $opts = array(
- 'http' => array(
- 'request_fulluri' => true,
- 'header' => $header
- ),
- );
- } else {
- // proxy를 사용함
- $opts = array(
- 'http' => array(
- 'proxy' => 'tcp://'.$proxy,
- 'request_fulluri' => true,
- 'header' => $header
- ),
- );
- }
- $context = stream_context_create($opts);
- $html = file_get_contents($url, false, $context);
- return $html;
- }