php header跳转 效率,php常用的header跳转

本文详细介绍了PHP中header函数的使用,包括301、302重定向,404错误页设置,内容类型定义如CSS、JavaScript、图片及PDF输出,缓存控制,强制下载以及HTTP基本认证。通过示例代码展示了如何实现各种功能。
摘要由CSDN通过智能技术生成

php常用的header跳转

2018-02-26

59

301永久跳转header('HTTP/1.1 301 Moved Permanently');

header('Location: http://www.example.com'); die();

302临时重定向跳转header('Location: http://www.example.com'); die();

404 Page Not Found:header('HTTP/1.1 404 Not Found');

Service not avaliable:header('HTTP/1.1 503 Service Temporarily Unavailable');

header('Status: 503 Service Temporarily Unavailable'); header('Retry-After: 60');

CSS样式文件:header('Content-Type: text/css');

Javascript header脚本:header('Content-Type: application/javascript');

Images图片输出:For JPEG(jpg):  <?php   header('Content-Type: image/jpeg'); ?>

For PNG:

<?php   header('Content-Type: image/png'); ?>  For BMP:  <?php   header('Content-Type: image/bmp'); ?>

PDF文件 (output pdf with php):header('Content-Type: application/pdf'); echo file_get_contents('filename.pdf');

缓存Cache (force browsers not to cache files):header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');

header('Cache-Control: no-store, no-cache, must-revalidate');

header('Cache-Control: pre-check=0, post-check=0, max-age=0');

header ('Pragma: no-cache');

Download dialog下载对话框:header('Content-Disposition: attachment; filename=' . urlencode($f));

header('Content-Type: application/force-download');

header('Content-Type: application/octet-stream');

header('Content-Type: application/download');

header('Content-Description: File Transfer');

header('Content-Length: ' . filesize($f));

echo file_get_contents($f);

Authentication安全验证 (force the browser to pop up a Username/Password input window) - only available when PHP is running as an Apache module:if (!isset($_SERVER['PHP_AUTH_USER'])) {

header('WWW-Authenticate: Basic realm="The Realm"');

header('HTTP/1.0 401 Unauthorized');

echo 'If cancel is pressed this text shows';

die(); }

else { //always escape your data// $user='user'; $pass='pass';

if($_SERVER['PHP_AUTH_USER']==$user && $_SERVER['PHP_AUTH_PW']==$pass){

echo 'Authorized';

} }

php header编码header("Content-type: text/html; charset=utf-8");

分享到:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值