>  기사  >  백엔드 개발  >  PHP 서버는 게시 요청에 어떻게 응답합니까?

PHP 서버는 게시 요청에 어떻게 응답합니까?

尚
원래의
2019-10-21 11:32:245488검색

PHP 서버는 게시 요청에 어떻게 응답합니까?

게시물 요청 시뮬레이션:

<?php
// 建立连接
$curl = curl_init();
//设置
$url = &#39;localhost&#39;;
curl_setopt($curl, CURLOPT_URL, $url);
# 设置开启post请求
curl_setopt($curl, CURLOPT_POST, $url);
$post_data = array(
    &#39;user_name&#39; => &#39;admin&#39;,
    &#39;user_pwd&#39; => &#39;123456&#39;
    );
curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data);
//发送
var_dump(curl_exec($curl));
//关闭
curl_close($curl);

php 게시 요청에 응답:

CURLOPT_RETURNTRANSFER: 응답을 직접 출력할지 아니면 반환 값 형식으로 처리할지
응답 데이터 처리 반환 값 형식:

curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

POST 파일 업로드

Post 데이터는 파일 주소를 사용하며, 문자열

$post_data = array(&#39;image&#39; => &#39;@c:/1.jpg&#39;);

Handle 세션 COOKIE

CURLOPT_COOKIEFILE: 여부 쿠키 전송

CURLOPT_COOKIEJAR: 저장 서버 지정 설정된 쿠키 변수 저장 위치

curl_setopt($curl, CURLOPT_COOKIEFILE, true);
curl_setopt($curl, CURLOPT_HEADER, &#39;c:/cookie.txt&#39;);

응답 헤더 처리 중

CURLOPT_HEADER: 응답 헤더 데이터 획득 여부

응답 헤더 데이터 가져오기:

curl_setopt($curl, CURLOPT_HEADER, true);

작업 응답

작업 응답 헤더:

header () function

json: header("Content-type: application/json");
(ie6: header("Content-type: text/json");) image: header('Content-Type:image/jpeg');, header('Content-Type:image/png') 등 인코딩: header("Content-type:text/html;Charset=utf-8 ");

작업 응답 본문

모든 출력은 응답 본문입니다. (echo, print, var_dump, PHP 태그 외부의 모든 HTML 코드)

브라우저 캐시 제어

header(&#39;Expires: &#39; . gmdate(&#39;D, d M Y H:i:s&#39;, time()+5) . &#39; GMT&#39;);

만료: 만료 날짜(GMT: 그리니치 표준시)

gmdate() 일반적으로 타임스탬프 형식을 Green Weizhi로 지정

self";

추천 도서:php 서버

위 내용은 PHP 서버는 게시 요청에 어떻게 응답합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.