[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');
먼저 이렇게 많이 쓰 면 후기 에 계속 업 데 이 트 를 진행 할 것 입 니 다!관심 가 져 주 셔 서 감사합니다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
laravel에 yo에서 angularJs&coffeescript를 사용할 수 있도록 한다.먼저 yo 명령을 사용할 수 있어야하므로 아래에서 설치 global에 설치한 곳에서 laravel의 프로젝트 루트로 이동. 클라이언트 코드를 관리하는 디렉토리를 만들고 이동합니다. 클라이언트 환경 만들기 이것으로 히...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.