Couplet Encyclopedia absolute PHP gets the absolute path of the file in the code-level directory

Source: Internet
Author: User
PHP Get file absolute path

Copy the Code code as follows:


Echo __file__; Get the absolute address of the current file, result: D:\www\test.php
echo dirname (__file__); Get the absolute directory where the current file is located, Result: D:\www\
Echo dirname (DirName (__file__)); Gets the previous level directory name of the current file, results: D:\
?>


ChDir () function
Definition and usage
The ChDir () function changes the current directory to the specified directory.
If successful, the function returns True, otherwise false is returned.
Grammar
ChDir (directory) parameter description
Directory is required. Specifies the new current directory.
Example

Copy the Code code as follows:


Get current directory
Echo GETCWD ();
echo "
";
Change to images Directory
ChDir ("Images");
echo "
";
Echo GETCWD ();
?>


Output:
C:\testweb\main
C:\testweb\main\images

The above describes the ancient couplet encyclopedia absolute php to get the absolute path of the code on the first level of the directory, including the couplet Encyclopedia of the absolute aspects of the content, I hope that the PHP tutorial interested friends have helped.

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