search
HomeBackend DevelopmentPHP Tutorial require中使用绝对路径的有关问题:常量重定义,变量覆盖,重调用增加开销

require中使用绝对路径的问题:常量重定义,变量覆盖,重调用增加开销。
因为相对路径引用总出问题,Google了下参考使用绝对路径。
在绝对路径使用中先后尝试了三种方法。
1、定义PATH常量,复用PATH进行require操作。
这里,如果主页面requrie的子页面具有相同define PAHT常量,报错重复定义常量PATH。
2、定$path变量,如下面的代码,重定义变量导致值的覆盖,可能导致其他相关require路径错误。
临时的决绝办法时重置$path变量,就像下面那样,但这给人感觉很傻。。
3、不用define也不用变量定义path路径,直接每次require时都重新构造路径,如
require dirname(__FILE__).'file_name.php';
但这让人感觉很笨……而且重复调用dirname加大开销很无趣……但是在不行就这样了,至少不会出错。
4、其他没有了,怎样更好的处理绝对路径的require,向各位讨教了。

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<?php #file:index.php,访问该页
$path = dirname(__FILE__);
require_once $path. '/../includes/pub_page_template.inc.php';
$path = dirname(__FILE__); //如果取消,下面的require错误。
require_once $path. '/../includes/conn.inc.php';
require_once $path. '/createdb.inc.php';
?>

<?php #file:pub_page_template.inc.php
$path = dirname(__FILE__);
require_once $path.  '/header.inc.php';
require_once $path. '/footer.inc.php';
?>



------解决方案--------------------
统一一下规则。指定义一个path常量不就可以了。
要不就用defined 做判断。如果定义了就不再定义了
------解决方案--------------------
定义PATH常量,这通常用于单一入口的应用
由于入口程序总是被首先运行,所以在这里定义就不会有问题

对于多入口的应用,PATH常量多定义于公共环境设置文件中(比如config.php)
为防止多次加载时出现问题,一般需要判断一下

if(defined('PATH')) return;
define('PATH', dirname(__FILE__));
//加载其他文件或定义公共类和函数的代码

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
vue3+vite:src使用require动态导入图片报错怎么解决vue3+vite:src使用require动态导入图片报错怎么解决May 21, 2023 pm 03:16 PM

vue3+vite:src使用require动态导入图片报错和解决方法vue3+vite动态的导入多张图片vue3如果使用的是typescript开发,就会出现require引入图片报错,requireisnotdefined不能像使用vue2这样imgUrl:require(&rsquo;&hellip;/assets/test.png&rsquo;)导入,是因为typescript不支持require所以用import导入,下面介绍如何解决:使用awaitimport

php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

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

设置Linux系统的PATH环境变量步骤设置Linux系统的PATH环境变量步骤Feb 18, 2024 pm 05:40 PM

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

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

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

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

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

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

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

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

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

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.