


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!

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

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.

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

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

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

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

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.

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


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

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

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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),
