get name of current PHP script in include file

php

Solution

__FILE__

https://www.php.net/manual/en/language.constants.predefined.php

Problem

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.

Original source