PHP: Variable not accessible defined in include/require file using absolute path

时光毁灭记忆、已成空白 提交于 2019-12-25 04:25:02

问题


I am finding difficulty in accessing a variable defined in the include file.

My include file is present in the root and it has a variable $x:

localhost/dir_name/include.php

I am including the include.php file in file.php present in the sub directory :

localhost/dir_name/sub_directory/file.php

But every time, the file.php gives the error of undefined variable $x

The weird thing is that when I use a relative path to include the include.php, it works perfectly. Like this:

include '../include.php';

ALSO, it works when using realpath($_SERVER['DOCUMENT_ROOT']). Like this:

include $_SERVER['DOCUMENT_ROOT'].'\dir_name\include.php'

But it never works for the absolute path. I also tried making the variable global but didn't helped me and the include.php file is also included correctly. It is not giving me any other error except this undefined variable.

Before asking, I tried finding this on SO, but couldn't find the answer to this error.

I am currently using the realpath($_SERVER["DOCUMENT_ROOT"]) as an alternative.


回答1:


localhost is not an absolute path. PHP reads the actual directories on your computer, not the ones from the URL.

Try echo realpath($_SERVER["DOCUMENT_ROOT"]) and you'll see what I mean.



来源:https://stackoverflow.com/questions/22452706/php-variable-not-accessible-defined-in-include-require-file-using-absolute-path

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!