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
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.