DiegoP.
DiegoP.

Reputation: 45737

PHP How to get Full Path to the file included home and user

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/

Upvotes: 0

Views: 2759

Answers (1)

Dan Grossman
Dan Grossman

Reputation: 52372

PHP < 5.3

$fullpath = dirname(__FILE__);

PHP >= 5.3

$fullpath = __DIR__;

http://php.net/manual/en/language.constants.predefined.php

Upvotes: 6

Related Questions