php 헤더 함수로 HTTP 헤더를 설정하는 방법: [header( 'Content-Type: text/html; charset=utf-8 ') ], 이는 인코딩을 utf-8로 설정하는 것을 의미합니다.
HTTP 헤더를 설정하는 PHP 헤더 함수의 예는 다음과 같습니다.
(추천 비디오 튜토리얼: java 비디오 튜토리얼)
인코딩 정의
header( 'Content-Type:text/html;charset=utf-8 ');
404 헤더 설정:
header('HTTP/1.1 404 Not Found');
설정 주소는 영구적입니다
header('HTTP/1.1 301 Moved Permanently');
를 새 주소로 리디렉션
header('Location: http://www.example.org/');
파일 지연 리디렉션:
header('Refresh: 10; url=http://www.example.org/'); print 'You will be redirected in 10 seconds';
브라우저에 마지막 수정 시간 알리기
$time = time() - 60; // or filemtime($fn), etc header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');
현재 문서에 대한 캐싱 비활성화
header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate'); header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past header('Pragma: no-cache');
관련 권장 사항: php 교육
위 내용은 PHP 헤더 기능으로 HTTP 헤더를 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!