php header () function detailed and practical method

Source: Internet
Author: User
Keywords Network programming PHP tutorial
Tags cache default function http multiple network network programming php

php tutorial header () function detailed practical methods

header (string, replace, http_response_code)
string Required. Specifies the header string to send.
replace optional. Indicates whether the header replaces the previous header or adds the second header.

The default is true (replace). false (allows multiple headers of the same type).

http_response_code Optional. Forcing the http response code to the specified value. (Php 4 and higher are available)

Jump

header ('location: http://www.jzread.com/'); send http status

header ("status: 404 not found");

Set the cache

header ("cache-control: no-cache, must-revalidate"); // http / 1.1
header ("expires: sat, 26 jul 1997 05:00:00 gmt");
Make use of header file download function

* /

header ("content-type: application / pdf"); // The file will be called downloaded.pdf

header ("content-disposition: attachment; filename = 'downloaded.pdf'"); // pdf source in original.pdf
readfile ("original.pdf");

?>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.