PHP page Jump operation instance analysis (header method), instance analysis header

Source: Internet
Author: User

PHP page Jump operation instance analysis (header method), instance analysis header

This article analyzes the PHP page Jump operations. We will share this with you for your reference. The details are as follows:

Jump

Header () is a php function that sends a specified command to the browser

Html:

<Meta http-equiv = "Refresh" content = "3; url = other. php"/>

Jump now:

Header ('location: other. php'); // file_put_contents('bee.txt ', 'execute'); die;

When the header is executed, the page is not executed immediately, but the page is executed completely. No output is available before the header. If the output buffer is enabled, no error is prompted. php. ini-> output_buffering = 4096 | OFF

Prompt jump:

Header ('refresh: 3, Url = other. php'); echo '3s '; // The style prompted is easy to customize the die because it is only displayed on a common page;

Encapsulated jump functions:

/** Jump * @ param $ url Destination Address * @ param $ info prompt information * @ param $ sec wait time * return void */function jump ($ url, $ info = null, $ sec = 3) {if (is_null ($ info) {header ("Location: $ url");} else {// header ("Refersh: $ sec; URL = $ url "); echo" <meta http-equiv = \ "refresh \" content = ". $ sec. "; URL = ". $ url. ">"; echo $ info;} die ;}

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.