init.php file PHP Get the parent directory method summary for the current file

Source: Internet
Author: User
Method One: First obtain the length of the folder in which the current file is located, and then use substr to intercept the length:

Copy the Code code as follows:

$dirName = str_replace ("\ \", "/", DirName (__file__));
$dirNameLength = strlen ($dirName);
$currentDirNameLength = $dirNameLength-strrpos ($dirName, "/"); Get the length of the folder where the current file is located!
$parentDirName = substr ($dirName, 0,-$currentDirNameLength); If the 3rd parameter is a negative number, then the "absolute value of this parameter" character is truncated from the back.

Method Two: The current file in the same folder as a file (folder is actually a special file, everything is a file!!) ), dirname can be nested directly with dirname:

$parentDirName = DirName (dirname (__file__));

From the above can be seen: the deep understanding of things, can greatly improve the code quality!

Attached: PHP Get path or directory implementation

PHP gets directories and methods through magic variables, through super global variables, through related functions and so on:

<?php/** * PHP Get path or directory implementation *///Magic variable, get the absolute path of the current file echo "__file__: ========>". __file__; Echo '
'; Magic variable, gets the directory of the current script echo "__dir__: ========>". __dir__;echo '
'; DirName returns the directory portion of the path, dirname (__file__) equals __dir__echo "DirName (__file__): ========>". dirname (__file__); Echo '
'; The results of $_server[' php_self ' and $_server[' script_name '] are generally the same, they all get the file name of the current script//Only when PHP is running in CGI mode, But now it's almost impossible to find a CGI run of PHP Echo ' $_server[' Php_self "]: ========> '. $_server[' php_self '];echo '
'; Echo ' $_server[' Script_name "]: ========> '. $_server[' script_name '];echo '
'; The absolute path of the current execution script. Remember that running PHP in the CLI mode is not getting the echo ' $_server[' Script_filename "]: ========> '. $_server[' script_filename '];echo '
'; The document root directory where the script is currently running. Defined in the server configuration file. Echo ' $_server[' Document_root "]: ========> '. $_server[' document_root '];echo '
'; GETCWD () returns the current working directory echo "GETCWD (): ========>". GETCWD (); Echo '
';

The above describes the init.php file PHP to get the current file of the parent directory method summary, including the contents of the init.php file, I hope to be interested in PHP tutorial friends helpful.

  • Related Article

    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.