Home Tutorial Php Examples PHP Get Absolute Path

 
 

PHP Get Absolute Path
Posted on: October 9, 2009 at 12:00 AM
The PHP Get Absolute Path example shows you how you can get the absolute path of any file.

This example shows you how you can get the absolute path of a file. We will use the dirname() function and then with the help of realpath() function we can get the absolute path of the file.

Code:

<?php//to know your absolute path

echo realpath(dirname("absolutepath.php"));

?>

Output:

/phpexample/absolutepath.php

Related Tags for PHP Get Absolute Path :


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.