PHP_SELF, SCRIPT_NAME, REQUEST_URI difference, requesturi_PHP tutorial

Source: Internet
Author: User
PHP_SELF, SCRIPT_NAME, and REQUEST_URI are different. requesturi. Differences between PHP_SELF, SCRIPT_NAME, and REQUEST_URI: Difference between requesturiPHP_SELF, SCRIPT_NAME, and REQUEST_URI $ _ SERVER [PHP_SELF], $ _ SERVER [SCRIPT_NAME], $ _ SERVER [REQUEST_URI] difference in usage of PHP_SELF, SCRIPT_NAME, REQUEST_URI, and requesturi
Differences between PHP_SELF, SCRIPT_NAME, and REQUEST_URI

$ _ SERVER [PHP_SELF], $ _ SERVER [SCRIPT_NAME], $ _ SERVER ['request _ URI '] are very similar in usage, they all return information related to the currently used page address. Here are some examples to help you determine which are most suitable for your script.

$ _ SERVER ['php _ SELF ']

  • Http://www.yoursite.com/example/---/Example/index. php
  • Http://www.yoursite.com/example/index.php---/Example/index. php
  • Http://www.yoursite.com/example/index.php? A = test---/Example/index. php
  • Http://www.yoursite.com/example/index.php/dir/test---/Dir/test

When we use $ _ SERVER ['php _ SELF '], no matter whether the Accessed URL address has an index. php, it will automatically return index. php. however, if a slash is added after the file name, all the subsequent content will be returned in $ _ SERVER ['php _ SELF '].

$ _ SERVER ['request _ URI ']

  • Http://www.yoursite.com/example/---/
  • Http://www.yoursite.com/example/index.php---/Example/index. php
  • Http://www.yoursite.com/example/index.php? A = test---/Example/index. php? A = test
  • Http://www.yoursite.com/example/index.php/dir/test---/Example/index. php/dir/test

$ _ SERVER ['request _ URI '] returns the exact address we wrote in the URL. if the URL is only written to "/", it returns "/".

$ _ SERVER ['script _ name']

  • Http://www.yoursite.com/example/---/Example/index. php
  • Http://www.yoursite.com/example/index.php---/Example/index. php
  • Http://www.yoursite.com/example/index.php---/Example/index. php
  • Http://www.yoursite.com/example/index.php/dir/test---/Example/index. php

The current file name/example/index. php is used in all the returned results.

Difference between begin SCRIPT_NAME and REQUEST_URI, and difference between requesturi PHP_SELF, SCRIPT_NAME, and REQUEST_URI $ _ SERVER [PHP_SELF], $ _ SERVER [SCRIPT_NAME], $ _ SERVER ['request _ URI '] in usage...

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.