从域中的任何位置访问核心功能脚本?

时间:2011-06-22 20:46:32

标签: php include root

我有一个coreFunctions.php文件,其中包含我的大部分关键功能,并将其放在我的域的根目录下。使用include(),如何从位于较低目录中的脚本访问它?示例:我在http://domain.com/folder/index.php中有一个脚本,您将如何从该脚本访问http://domain.com/coreFunctions.php

4 个答案:

答案 0 :(得分:2)

答案 1 :(得分:2)

include $_SERVER['DOCUMENT_ROOT'] . "/coreFunctions.php";

答案 2 :(得分:0)

include("../coreFunctions.php");

答案 3 :(得分:-1)

我没有尝试过include但尝试了require,我认为include也适用于此。 只是用 require "http://domain.com/coreFunctions.php";