이 문서는 PHP 헤더의 다양한 사용법에 대한 요약을 공유합니다(예제 설명). 이는 좋은 참조 가치가 있으며 모든 사람에게 도움이 되기를 바랍니다.
1. header() 함수의 기능은 다음과 같습니다. 원본 HTTP 헤더[Http Header]를 클라이언트에 보냅니다.
header(string,replace,http_response_code) /*string:必需。规定要发送的报头字符串。 replace:可选。指示该报头是否替换之前的报头,或添加第二个报头。 默认是 true(替换)。false(允许相同类型的多个报头)。 http_response_code:可选。把 HTTP 响应代码强制为指定的值。*/
참고: 실제 출력이 전송되기 전에 header() 함수를 호출해야 합니다.
2. 사용법 1: 페이지로 이동
header("Location:https://baidu.com"); //正常跳转 header('Refresh: 3; url=https://www.baidu.com'); //3s后跳转 //在header作跳转时,避免发生错误后,代码继续执行,一般加个exit;
사용법 2: 컨텐츠 유형 선언(잘못된 코드를 해결할 때 자주 사용합니다)
rreee
사용법 3: 응답 상태 코드 반환
header('content-type:text/html;charset=utf-8');
사용법 4: 다운로드 작업 수행(파일 위치 숨기기)
header('HTTP/1.1 403 Forbidden');
용법 5: 서버 캐시 검색 제어
header('Content-Type: application/octet-stream'); //设置内容类型 header('Content-Disposition: attachment; filename="example.zip"');//设置MIME用户作为附件 header('Content-Transfer-Encoding: binary'); //设置传输方式 header('Content-Length: '.filesize('example.zip')); //设置内容长度
사용법 6:
3. 추가 예시
header( 'Expires: Mon, 26 Jul 1997 05:00:00 GMT' ); //如果服务器上的网页经常变化,就把它设置为-1,表示立即过期 header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' ); header( 'Cache-Control: no-store, no-cache, must-revalidate' ); header( 'Cache-Control: post-check=0, pre-check=0', false ); header( 'Pragma: no-cache' );
관련 권장 사항:
php를 사용하여 ajax 헤더 메서드 및 콘텐츠 예제 가져오기
위 내용은 PHP에서 헤더의 다양한 사용법(케이스)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!