PHP Get file path (Flexible application __file__) _php tips

Source: Internet
Author: User

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

Demo Code:

Copy Code code as follows:

<?php
Gets the current path + filename of the file
Echo __file__;
Echo ' <BR> ';
Gets the current path of the file
echo dirname (__file__);
Echo ' <BR> ';
Get the directory path to the file at the top level
Echo dirname (DirName (__file__));
?>

Run Result:

Copy Code code as follows:

D:\wamp\www\index.php
D:\wamp\www
D:\wamp

__file__ is very 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 Web site on the server, other directories as the base distribution.

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.