|
|
Snippet Name: Get Absolute Path
Description: It's sometimes necessary to figure out the absolute path to a certain file. This snippet will do that.
Comment: (none)
Language: PHP
Highlight Mode: PHP
Last Modified: March 01st, 2009
|
<?PHP
$path = GETCWD();
ECHO “Your Absolute Path is: “;
ECHO $path;
?> |
|
|
|
|
|