반응형
function httpGet($url)
{
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
// curl_setopt($ch,CURLOPT_HEADER, false);
$output=curl_exec($ch);
curl_close($ch);
return $output;
}
echo httpGet("http://naver.com");
'Coding > Etc' 카테고리의 다른 글
Cannot use object of type stdClass as array 에러 (0) | 2016.02.27 |
---|---|
php json 처리 (0) | 2016.02.27 |
PHP 소켓 (0) | 2016.02.26 |
롤 API Key 발급받기 (0) | 2016.02.26 |
C# 무한루프에 딜레이 주기 (0) | 2016.02.24 |