What is the "Starting Point" For PHP's set_include_path -
What is related to set_include_path, in PHP? Is this folder where PHP.exe resides? Is this WebRot? In other words, will the folder set_in refer to clude_path ('/') or set_include_path ('.')?
The relative path is solved with the location of the file where contains
Or any other function using include_path is used in (see):
Using a
.
Allows for the path involved in the relative because it means the current directory. However, to be able to use PHP to always include theinclude './file'
is more efficient to check the existing directory to include in each.
/
The root of your file system and .
will describe the current directory.
Comments
Post a Comment