Reputation: 893
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?
Upvotes: 3
Views: 10595
Reputation: 3902
You're looking for realpath
$path = 'mydir/index.php';
echo realpath($path);
Upvotes: 8
Reputation: 798744
Prepend $_SERVER["DOCUMENT_ROOT"]
to the script path.
Upvotes: 5