


Detailed explanation on the usage of set_include_path() function in PHP
This article mainly introduces the usage of the set_include_path() function in PHP, and analyzes the related skills of PHP for file path setting in the form of examples. It has certain reference value. Friends in need can refer to it
First look at the following code:
<?php /** 定义根目录 */ define('__TYPECHO_ROOT_DIR__', dirname(__FILE__)); /** 定义插件目录(相对路径) */ define('__TYPECHO_PLUGIN_DIR__', '/usr/plugins'); /** 设置包含路径 */ @set_include_path(get_include_path() . PATH_SEPARATOR . __TYPECHO_ROOT_DIR__ . '/var' . PATH_SEPARATOR . __TYPECHO_ROOT_DIR__ . __TYPECHO_PLUGIN_DIR__); ?>
First:
Let’s look at this global variable: __FILE__
it Indicates the full path of the file (including the file name of course)
That is to say, it has different values depending on the directory where your file is located; of course, when it is used in a package line file, it The value is the included path;
Then:
We look at this function:
string dirname ( string path )
It is a PHP built-in function , what is its function, is to return the directory other than the file name, for example:
If you use the _FILE_ variable in your homepage:
(assuming your The directory where the web page is located is: http://localhost/web/index.php), then: the value of
_FILE_ is http://localhost/web/index.php (an absolute path). At this time, dirname (_FILE_) represents http://localhost/web/, which means there is no file name index.php.
And dirname(dirname(_FILE_)) represents the upper-level directory, and so on;
Finally:
Look at the define() function, in fact It is a function that defines constants, such as: define('MEN','ooooo');
Then you can use MEN to represent the string ooooo;
That's it What's the advantage of writing is that when you need to modify a variable, you just need to modify it, which is quite convenient, especially for strings like paths!
Let’s explain this code:
define('__TYPECHO_ROOT_DIR__', dirname(__FILE__));
is to define __TYPECHO_ROOT_DIR__ as the directory where this file is located. A definition like this is usually If placed in config.inc.php, then the directory obtained is the directory where config.inc.php is located; that is, the root directory!
define('__TYPECHO_PLUGIN_DIR__', '/usr/plugins');
It goes without saying!
As for what set_include_path(get_include_path() . PATH_SEPARATOR . $path); means, it is the include path;
For example, if you have a folder: named include, there is a database connection file in it :conn.php......,
You set it like this:
set_include_path("/include")
Then you can use it directly in other pages in the future
include("conn.php")
Isn’t this often seen? Its parameters are strings. Of course, you can also set multiple paths, separated by ;. What does that sentence:
set_include_path(get_include_path() . PATH_SEPARATOR . __TYPECHO_ROOT_DIR__ . '/var' . PATH_SEPARATOR . __TYPECHO_ROOT_DIR__ . __TYPECHO_PLUGIN_DIR__);
mean? For example :
One of your pages has this statement:
include('/inc/sql.php'); include('/inc/conn.php');
And you suddenly discovered that I put these files to be included in the inc directory It’s not safe to download. What should I do? I want to change it. I want to put it in the include directory. Okay, it’s weird if I don’t get exhausted with so many pages: Is there a good way? have! ! ! ! ! ! !
Write this sentence in config.inc.php:
set_include_path(get_include_path() .'/include')
It’s that simple, yes, it’s that simple! Dynamic modification!
Don’t look at this: get_include_path() . PATH_SEPARATOR . $path What is this? It is just a path string. The middle one is the string connection symbol, which is a combination of the constants just defined. Into a string, which means he can dynamically set the include path! If the included path is returned correctly, false is returned incorrectly;
Summary: The above is the entire content of this article, I hope it will be helpful to everyone's learning.
Related recommendations:
Detailed graphic and text explanation of file operation in PHP
phpimplementation of simple Chinese Method of verification code function
implementation of symmetric encryption algorithm in php
##
The above is the detailed content of Detailed explanation on the usage of set_include_path() function in PHP. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.
