I have files served like so:
AJAX request handler -> Include file
I would like to retrieve the name of the include file within the include itself. Neither $_SERVER['PHP_SELF']
or $_SERVER['SCRIPT_NAME']
is suitable for this, as they return the "parent" script name.
Thanks.
__FILE__
http://us3.php.net/manual/en/language.constants.predefined.php
If you want only the name part of the file (without the directory) you can use basename(__FILE__)
or for just the directory dirname(__FILE__)
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With