search
HomeBackend DevelopmentPHP TutorialDetailed 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(&#39;__TYPECHO_ROOT_DIR__&#39;, dirname(__FILE__));
/** 定义插件目录(相对路径) */
define(&#39;__TYPECHO_PLUGIN_DIR__&#39;, &#39;/usr/plugins&#39;);
/** 设置包含路径 */
@set_include_path(get_include_path() . PATH_SEPARATOR .
__TYPECHO_ROOT_DIR__ . &#39;/var&#39; . 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(&#39;__TYPECHO_ROOT_DIR__&#39;, 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(&#39;__TYPECHO_PLUGIN_DIR__&#39;, &#39;/usr/plugins&#39;);

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__ . &#39;/var&#39; . PATH_SEPARATOR .
__TYPECHO_ROOT_DIR__ . __TYPECHO_PLUGIN_DIR__);

mean? For example :

One of your pages has this statement:

include(&#39;/inc/sql.php&#39;);
include(&#39;/inc/conn.php&#39;);

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() .&#39;/include&#39;)

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!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Article

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),