Answers for "how to get absolute path in php"

PHP
0

get absolute path php file

SplFileInfo.

$path = new SplFileInfo(__FILE__);
echo 'The real path is '.$path->getRealPath();
Posted by: Guest on July-09-2021
0

absolute path php

// File in htdocs MAMP
echo getcwd(); //Users/Example/Applications/MAMP/htdocs
Posted by: Guest on May-11-2021

Code answers related to "how to get absolute path in php"

Browse Popular Code Answers by Language