我已经在我的计算机上安装了wamp服务器,我需要在相对路径上设置文档根URL。我需要这种形式的地址网址:
//当我使用文档根指令__DIR__
时,我希望得到像bellow
//输出
http://localhost/
它可能吗?感谢
答案 0 :(得分:0)
我觉得你有点困惑。 __DIR__
命令执行此操作(来自手册)
The directory of the file.
If used inside an include, the directory of the included file is returned.
This is equivalent to dirname(__FILE__).
This directory name does not have a trailing slash unless it is the root directory.
如果你想要一个PHP语法,无论从何处使用
,都会返回DocumentRoot$_SERVER["DOCUMENT_ROOT"]