Answers for "php read absolute path"

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

Browse Popular Code Answers by Language