PHP _ FILE _, dirname and basename usage example analysis _ php skills

Source: Internet
Author: User
This article mainly introduces the usage of _ FILE _, dirname, and basename in PHP, and analyzes in detail the usage of _ FILE _, dirname, and basename in the form of an instance, I also tested and compared the built-in functions in WordPress. For more information, see the examples in this article to describe the usage of _ FILE _, dirname, and basename in PHP. Share it with you for your reference. The specific method is as follows:

In php, the complete path and FILE name of the current running FILE are _ FILE _. if it is used in the included FILE, the included FILE name is returned, this is a magic variable (a predefined constant). we can use dirname and basename to obtain the file directory or file name.

1. use _ FILE _ and dirname (_ FILE _) and basename (_ FILE:

It is usually very effective to use dirname (_ FILE _) when configuring the FILE path, however, because the path of _ FILE _ is the complete path of the FILE where the current code is located (rather than the FILE where the url is located), the configuration FILE must be defined under the root directory to define the root address of the website, however, the following method can solve the problem of storing the configuration file:

The code is as follows:

Dirname (_ FILE __));

Assume that _ FILE _ is/home/web/config. php, and the above method output is/home/web

Dirname (_ FILE _); the directory name at the top of the FILE is obtained.

Dirname (_ FILE _); the directory name of the FILE's layer is obtained.

Assume that the current directory and file structure are as follows. the variables we want to test are in the wp_smtp_admin.php file:

Wp-content \ plugins \ wp-smtp \ wp-smtp.php

Wp-content \ plugins \ wp-smtp \ wp_smtp_admin.php

Wp-content \ plugins \ wp-smtp \ img \ blq_32_32.jpg

The test result is as follows:

The code is as follows:

Echo _ FILE __."
"; // Output F: \ xampp \ htdocs \ wordpress \ wp-content \ plugins \ wp-smtp \ wp_smtp_admin.php
Echo dirname (_ FILE __)."
"; // Output F: \ xampp \ htdocs \ wordpress \ wp-content \ plugins \ wp-smtp
Echo basename (_ FILE __)."
"; // Output wp_smtp_admin.php


2. test some built-in functions of wordpress:

The code is as follows:

Echo plugin_basename (_ FILE __)."
"; // Output wp-smtp/wp_smtp_admin.php
Echo dirname (plugin_basename (_ FILE __))."
"; // Output wp-smtp
Echo plugin_dir_url (_ FILE __)."
"; // Output http: // localhost/wordpress/wp-content/plugins/wp-smtp/
Echo plugin_dir_path (_ FILE __)."
"; // Output F: \ xampp \ htdocs \ wordpress \ wp-content \ plugins \ wp-smtp/
Echo plugins_url ()."
"; // Output http: // localhost/wordpress/wp-content/plugins
Echo plugins_url ('',__ FILE __)."
"; // Output http: // localhost/wordpress/wp-content/plugins/wp-smtp
Echo plugins_url ('/img/blq_32_32.jpg' ,__ FILE __)."
"; // Output http: // localhost/wordpress/wp-content/plugins/wp-smtp/img/blq_32_32.jpg


Now let's take a look at the dirname and basename descriptions.

The dirname () function returns the directory part of the path, while the basename () function returns the file name part of the path. from here, we can easily see the above result.

I hope this article will help you with PHP programming.

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.