이 글은 PHP 헤더 기능의 몇 가지 주요 기능을 주로 소개하고 있으니 많은 도움이 되셨으면 좋겠습니다.
추천 튜토리얼: PHP 비디오 튜토리얼
공식 보기 첫 번째 문서 정의
(PHP 4, PHP 5, PHP 7)
header — 기본 HTTP 헤더 보내기
void header ( string $string [, bool $replace = true [, int $http_response_code ]] )
<?php header("HTTP/1.0 404 Not Found"); ?>
<?php header("Location: http://www.example.com/"); /* Redirect browser */ /* Make sure that code below does not get executed when we redirect. */ exit; ?>
선택적 매개변수인 교체는 동일한 유형의 이전 헤더를 이후 헤더로 바꿀지 여부를 나타냅니다. 기본적으로 대체됩니다. FALSE가 전달되면 동일한 헤더 정보가 강제로 공존할 수 있습니다. 예:
<?php header('WWW-Authenticate: Negotiate'); header('WWW-Authenticate: NTLM', false); ?>
http_response_code
HTTP 응답 값을 강제로 적용합니다. 이 매개변수는 메시지 문자열(string)이 비어 있지 않은 경우에만 유효합니다.헤더 기능의 일반적인 용도는 다음과 같습니다.
1.
Header('위치: http://www.example.com/');2. :
header('콘텐츠 유형: 애플리케이션/pdf') 헤더('콘텐츠 유형: 애플리케이션/pdf'); download.pdf"');
//파일을 열어서 출력
readfile('original.pdf');
위 코드 브라우저에서 파일 대화 상자 효과를 생성할 수 있습니다
4. 사용자가 캐싱 대신 최신 정보와 데이터를 얻을 수 있도록 허용 # 🎜🎜# header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1header("만료일: 1997년 7월 26일 토요일 05:00:00 GMT"); #🎜🎜 #
<?php header('HTTP/1.1 200 OK'); // ok 正常访问 header('HTTP/1.1 404 Not Found'); //通知浏览器 页面不存在 header('HTTP/1.1 301 Moved Permanently'); //设置地址被永久的重定向 301 header('Location: http://www.ithhc.cn/'); //跳转到一个新的地址 header('Refresh: 10; url=http://www.ithhc.cn/'); //延迟转向 也就是隔几秒跳转 header('X-Powered-By: PHP/6.0.0'); //修改 X-Powered-By信息 header('Content-language: en'); //文档语言 header('Content-Length: 1234'); //设置内容长度 header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT'); //告诉浏览器最后一次修改时间 header('HTTP/1.1 304 Not Modified'); //告诉浏览器文档内容没有发生改变 ###内容类型### header('Content-Type: text/html; charset=utf-8'); //网页编码 header('Content-Type: text/plain'); //纯文本格式 header('Content-Type: image/jpeg'); //JPG、JPEG header('Content-Type: application/zip'); // ZIP文件 header('Content-Type: application/pdf'); // PDF文件 header('Content-Type: audio/mpeg'); // 音频文件 header('Content-type: text/css'); //css文件 header('Content-type: text/javascript'); //js文件 header('Content-type: application/json'); //json header('Content-type: application/pdf'); //pdf header('Content-type: text/xml'); //xml header('Content-Type: application/x-shockw**e-flash'); //Flash动画 ###### ###声明一个下载的文件### header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="ITblog.zip"'); header('Content-Transfer-Encoding: binary'); readfile('test.zip'); ###### ###对当前文档禁用缓存### header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate'); header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); ###### ###显示一个需要验证的登陆对话框### header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: Basic realm="Top Secret"'); ###### ###声明一个需要下载的xls文件### header('Content-Disposition: attachment; filename=ithhc.xlsx'); header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); header('Content-Length: '.filesize('./test.xls')); header('Content-Transfer-Encoding: binary'); header('Cache-Control: must-revalidate'); header('Pragma: public'); readfile('./test.xls'); ###### ?>
위 내용은 PHP 헤더의 역할의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!