php 아날로그 POST 요청 데이터 제출
6216 단어 post
1. fsockopen 기반
function phppost00($jsonString){
$URL='https://www.jy.com/phppostok.php';
$post_data['clientname'] = $jsonString;
$referrer="";
$URL_Info=parse_url($URL);
foreach($post_data as $key=>$value)
$values[]="$key=".$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='';
$request.="POST ".$URL_Info["path"]." HTTP/1.1
";
$request.="Host: ".$URL_Info["host"]."
";
//$request.="Referer: $referrer
";
$request.="Content-type: application/x-www-form-urlencoded
";
$request.="Content-length: ".strlen($data_string)."
";
$request.="Connection: close
";
$request.="
";
$request.=$data_string."
";
$fp = fsockopen($URL_Info["host"],$URL_Info["port"]);
fputs($fp, $request);
$result='';
while(!feof($fp)) {
$result .= fgets($fp, 128);
}
fclose($fp);
}
2.curl_기반init
function phppost($jsonString){
$url='http://www.jy.com/phppostok.php';
$fields=$jsonString;
$ch=curl_init();
curl_setopt($ch,CURLOPT_POST, true);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS,$fields);
$response=curl_exec($ch);
curl_close($ch);
$result = json_decode($response,true);
return $result;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
프론트에서 Contentful으로의 POST 요청 방법이 문서를 보더라도 이해하기 어려웠기 때문에 요약JAMStack으로 서비스를 만들고 싶었고, 전부터 신경이 쓰인 헤드리스 CMS Contentful을 사용해 보았습니다. 브라우저에서 게시하는 것은 쉽지만 프런트에서 Contentful으로 POST 요청을하는 방법이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.