有关PHP中require的问题
发布网友
发布时间:2022-04-06 03:38
我来回答
共2个回答
热心网友
时间:2022-04-06 05:07
ROOT_PATH
实际相当于一个变量.如果某时候需要修改项目的目录位置,修改变量即可.
如果直接写'/Core/Config.php'
就没办法更改路径了.
比如:项目需要放在
aaa的下面.就没办法了.
而且也不能直接用
/
的.
热心网友
时间:2022-04-06 06:25
看看之前是不是有一个这样的语句
define("ROOT", "**********");
这个语句是定义常数ROOT的值
define
(PHP 3, PHP 4, PHP 5)
define -- Defines a named constant
说明
bool define ( string name, mixed value [, bool case_insensitive] )
Defines a named constant at runtime.
参数
name
The name of the constant.
value
The value of the constant.
case_insensitive
If set to TRUE, the constant will be defined case-insensitive. The default behaviour is case-sensitive; i.e. CONSTANT and Constant represent different values.
返回值
如果成功则返回 TRUE,失败则返回 FALSE。