1. 程式人生 > >PHP常見的header操作

PHP常見的header操作

PHP常見的header操作

  • 404:
    header ("HTTP/1.1 404 Not Found");
  • 301:
    header ("HTTP/1.1 301 Moved Permanently"); 
    header ("Location:http://www.baidu.com");
  • 下載文件:
    header (‘Content-type: application/file‘);
    header ("Content-Disposition: attachment; filename=‘test.file‘");
    readfile ("test.file");
  • PHP常見的header操作