PHP Get file path (Flexible application __file__) _php Tutorial

Source: Internet
Author: User
__FILE__, which is the full path and file name of the returned file. If used in the include file, the include filename is returned. Since PHP 4.0.2, __file__ always contains an absolute path, and the previous version sometimes contains a relative path. DirName (__file__), which returns a partial path to the current file path, that is, removing the file name.

Demo Code:

Copy the Code code as follows:
Gets the current path of the file + filename
Echo __file__;
Echo '
';
Gets the current path of the file
echo dirname (__file__);
Echo '
';
Get the top level directory path of a file
Echo dirname (DirName (__file__));
?>

Operation Result:

Copy the Code code as follows:
D:\wamp\www\index.php
D:\wamp\www
D:\wamp

__FILE__ is good, you can get the current path of the file, even if the include does not change, can be used as the absolute path of the site on the server, the other directory as a benchmark distribution.

http://www.bkjia.com/PHPjc/326615.html www.bkjia.com true http://www.bkjia.com/PHPjc/326615.html techarticle __file__, which is the full path and file name of the returned file. If used in the include file, the include filename is returned. From PHP 4.0.2, __file__ always contains an absolute path, while in ...

  • 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.