


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!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

Linux系统如何设置PATH环境变量在Linux系统中,PATH环境变量用于指定系统在命令行中搜索可执行文件的路径。正确设置PATH环境变量可以方便我们在任何位置执行系统命令和自定义命令。本文将介绍如何在Linux系统中设置PATH环境变量,并提供详细的代码示例。查看当前的PATH环境变量在终端中执行以下命令,可以查看当前的PATH环境变量:echo$P

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

当我们在使用 PHP 编写网页时,有时我们需要在当前 PHP 文件中包含其他 PHP 文件中的代码。这时,就可以使用 include 或 include_once 函数来实现文件包含。那么,include 和 include_once 到底有什么区别呢?


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1
Powerful PHP integrated development environment
