[php]상용 헤더

5564 단어 PHP
자주 사용 하 는 헤더 개발
//방향 전환
header('Refresh: 10; url=http://www.baidu.com/');

//301 영구적 으로 방향 을 바 꿉 니 다.뒤에 주 소 를 바 꾸 는 것 을 기억 하 십시오.Location:$url
header('HTTP/1.1 301 Moved Permanently'); 

//성공 점프
header('HTTP/1.1 200 OK');

//404 마리 설정
header('HTTP/1.1 404 Not Found');

//점프
header('Location: http://www.baidu.com/');

//언어 설정
header('Content-language: en');

//브 라 우 저 에 마지막 수정 시간 알려 주기
$time = time() - 60; // or filemtime($fn), etc

header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');

//브 라 우 저 문서 내용 이 변경 되 지 않 았 음 을 알려 줍 니 다.
header('HTTP/1.1 304 Not Modified');

//다운로드
header("Content-Type:application/download");

//강제 다운로드
header("Content-Type:application/force-download");

//헤더 파일 형식 을 설정 하여 스 트림 파일 이나 파일 다운로드 에 사용 할 수 있 습 니 다.
header('Content-Type: application/octet-stream'); 

header('Content-Disposition: attachment; filename="example.zip"'); header('Content-Transfer-Encoding: binary'); readfile('example.zip'); //         

//첨부 파일
header('Content-type: application/pdf'); //       
header('Content-Disposition: attachment; filename="downloaded.pdf"'); //        
readfile('original.pdf'); //     ,   

//캐 시 사용 안 함
header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');

header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 

//내용 길이 설정
header('Content-Length: 39344');

//페이지 헤더 정보 설정
header('Content-Type: text/html; charset=iso-8859-1'); 
header('Content-Type: text/html; charset=utf-8'); 
header('Content-Type: text/plain'); 
header('Content-Type: image/jpeg'); 
header('Content-Type: application/zip'); 
header('Content-Type: application/pdf'); 
header('Content-Type: audio/mpeg'); 
header('Content-Type: application/x-shockwave-flash'); 

//로그 인 상자
header('HTTP/1.1 401 Unauthorized'); 
header('WWW-Authenticate: Basic realm="    "'); 
echo '     !';

//X-Powered-by 값 다시 쓰기
header('X-Powered-By: PHP/5.3.0'); 
header('X-Powered-By: Brain/0.6b'); 

먼저 이렇게 많이 쓰 면 후기 에 계속 업 데 이 트 를 진행 할 것 입 니 다!관심 가 져 주 셔 서 감사합니다!

좋은 웹페이지 즐겨찾기