Answers for "get absolute path php file"

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

Code answers related to "get absolute path php file"

Browse Popular Code Answers by Language