Is it possible to translate a server relative virtual path to physical path in PHP?
e.g. if I have a url:
/home/index.php
then find the physical path of index.php somehow from some other script??
Is it possible to translate a server relative virtual path to physical path in PHP?
e.g. if I have a url:
/home/index.php
then find the physical path of index.php somehow from some other script??
Prepend $_SERVER["DOCUMENT_ROOT"]
to the script path.
You're looking for realpath
$path = 'mydir/index.php';
echo realpath($path);