개발 꿀팁/PHP

phphttp가 get, post 요청을 보내는 몇 가지 방법

Jammie 2022. 7. 6. 15:00
반응형

방법 1: file_get_contents로 get 방식으로 내용 가져오기

<?php  
$url='http://www.domain.com/';  
$html = file_get_contents($url);  
echo $html;  
?>

방법 2: fopen으로 url을 열고 get 방식으로 콘텐츠를 가져옵니다

<?php  
$fp = fopen($url, 'r');  
//요청 흐름 정보 반환 (배열: 요청 상태, 차단됨, 반환 값이 비어 있는지 여부, 반환 값 HTTP 등)stream_get_meta_data($fp);
while(!feof($fp)) {  
$result .= fgets($fp, 1024);  
}  
echo "url body: $result";  
fclose($fp);  
?>

방법3:file_get_contents 함수를 이용하여 post 방식으로 url을 획득한다.

<?php  
$data = array ('foo' => 'bar');  //url-encode 생성 후 요청 문자열, 배열 변환  
$data = http_build_query($data);  
$opts = array (  
<span style="white-space:pre">  </span>'http' => array (  
<span style="white-space:pre">      </span>'method' => 'POST',  
<span style="white-space:pre">      </span>'header'=> "Content-type: application/x-www-form-urlencoded\r\n" .  
<span style="white-space:pre">      </span>"Content-Length: " . strlen($data) . "\r\n",  
<span style="white-space:pre">      </span>'content' => $data  
<span style="white-space:pre">  </span>)  
);  요청한 핸들 파일 생성
$context = stream_context_create($opts);  
$html = file_get_contents('http://localhost/e/admin/test.html', false, $context);  
echo $html;  
?>

방법 4: fsockopen 함수로 url을 열고 header와 body를 포함하여 get으로 완전한 데이터를 가져옵니다. fsockopen은 PHP.ini가 필요합니다

allow_url_fopen 옵션 켜기
<?php  
function get_url ($url,$cookie=false)  
{  
$url = parse_url($url);  
$query = $url[path]."?".$url[query];  
echo "Query:".$query;  
$fp = fsockopen( $url[host], $url[port]?$url[port]:80 , $errno, $errstr, 30);  
if (!$fp) {  
return false;  
} else {  
$request = "GET $query HTTP/1.1\r\n";  
$request .= "Host: $url[host]\r\n";  
$request .= "Connection: Close\r\n";  
if($cookie) $request.="Cookie:   $cookie\n";  
$request.="\r\n";  
fwrite($fp,$request);  
while()) {  
$result .= @fgets($fp, 1024);  
}  
fclose($fp);  
return $result;  
}  
}  
//url의 HTML 부분 가져오기, header 제거 
function GetUrlHTML($url,$cookie=false)  
{  
$rowdata = get_url($url,$cookie);  
if($rowdata)  
{  
$body= stristr($rowdata,"\r\n\r\n");  
$body=substr($body,4,strlen($body));  
return $body;  
}  
    return false;  
}  
?>

방법 5: fsockopen 함수로 url을 열고, 헤더와 body를 포함하여 POST 방식으로 완전한 데이터를 가져옵니다

<?php  
function HTTP_Post($URL,$data,$cookie, $referrer="")  
{  
    // parsing the given URL  
$URL_Info=parse_url($URL);  
    // Building referrer  
if($referrer=="") // if not given use this script as referrer  
$referrer="111";  
    // making string from $data  
foreach($data as $key=>$value)  
$values[]="$key=".urlencode($value);  
$data_string=implode("&",$values);  
    // Find out which port is needed - if not given use standard (=80)  
if(!isset($URL_Info["port"]))  
$URL_Info["port"]=80;  
    // building POST-request:  
$request.="POST ".$URL_Info["path"]." HTTP/1.1\n";  
$request.="Host: ".$URL_Info["host"]."\n";  
$request.="Referer: $referer\n";  
$request.="Content-type: application/x-www-form-urlencoded\n";  
$request.="Content-length: ".strlen($data_string)."\n";  
$request.="Connection: close\n";  
    $request.="Cookie:   $cookie\n";  
    $request.="\n";  
$request.=$data_string."\n";  
    $fp = fsockopen($URL_Info["host"],$URL_Info["port"]);  
fputs($fp, $request);  
while(!feof($fp)) {  
$result .= fgets($fp, 1024);  
}  
fclose($fp);  
    return $result;  
}  
?>[size=13]  [/size]

방법6:curl 라이브러리를 사용하고 curl 라이브러리를 사용하기 전에 php.ini가 curl 확장을 켰는지 확인해야 할 수도 있습니다.

<?php  
$ch = curl_init();  
$timeout = 5;  
curl_setopt ($ch, CURLOPT_URL, 'http://www.domain.com/');  
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);  
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);  
$file_contents = curl_exec($ch);  
curl_close($ch);  
echo $file_contents;  
?>

물론 너는 아래의 예시로 시험해 볼 수 있다

function tj_post($remote_server, $post_string) {  
  $ch = curl_init();  
  curl_setopt($ch, CURLOPT_URL, $remote_server);  
  curl_setopt($ch, CURLOPT_POSTFIELDS, 'mypost=' . $post_string);  
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  
  curl_setopt($ch, CURLOPT_USERAGENT, "123456");  
  $data = curl_exec($ch);  
  curl_close($ch);  
  
  return $data;  
}

$post_data = "a=xxx&b=123";//파라미터는 상황에 맞게 쓸 수 있습니다
$jieguo=tj_post("포스트를 원하는 웹 주소", $post_data)

반응형