How can I get in PHP the full path to the file?
For example:
/home/yob/public_html/demo/envato/cce/tug/cron/cron.php
I want the folder where the file is:
/home/yob/public_html/demo/envato/cce/tug/cron/
How can I get in PHP the full path to the file?
For example:
/home/yob/public_html/demo/envato/cce/tug/cron/cron.php
I want the folder where the file is:
/home/yob/public_html/demo/envato/cce/tug/cron/
PHP < 5.3
$fullpath = dirname(__FILE__);
PHP >= 5.3
$fullpath = __DIR__;