Programming
[php] file_get_contents() 함수 대체하기
Lunik
2013. 8. 12. 00:40
반응형
file_get_contents 함수는 서버 보안상 off되있는곳이 많다.
이 함수를 curl를 이용하여 대체가능하다.
세부 링크 :http://www.partner114.com/bbs/board.php?bo_table=B07&wr_id=126
<?php
function curl($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$g = curl_exec($ch);
curl_close($ch);
return $g;
}
?>
위와 같이 별도의 함수를 파일로 만들어서 include해서 사용할수 있다.