Is this, for example, a good idea?
require_once($_SERVER['DOCUMENT_ROOT'].'/include.php');
If you have two virtual hosts on the same server, one for live and one for development, with different Apache DocumentRoots, this would avoid having to include absolute paths when the source of the include is unknown, and may be in any directory.
(Note: file paths in the following section are relative to the web root. They would in fact be like /var/www/app/core/init.php
, where /var/www/app
is the web root)
For instance: I have an /core/init.php which is called using relative paths from places all over the website (/file.php
, /dir/file.php or /dir/dir/file.php
).
This init.php then includes several function pages, in the fund directory, a subdir of /core
(as in /core/func/userfunctions.php
).
So, in init.php, I can use the $_SERVER
method, because it breaks if I use a relative path and try to call functions from a page like /dir/file.php
.
I can't see any problem with it, but in general what could go wrong?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…