Answers for "php require 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
0

absolute path php

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

Browse Popular Code Answers by Language