Filename of the currently executed php script

php.internals

Stefan Mueller

22 years ago
Hi I'm a greenhorn tying to add some code to /ext/standard/mail.c php_mail(...), but I have trouble to get the filename of the php script that triggers the php_mail(...) call. compiler_globals.compiled_filename doesn't work. It's always NULL. Any ideas how i could get this filename? thanks ! Stefan

Wez Furlong

22 years ago
>From zend_error():
error_filename = zend_get_executed_filename(TSRMLS_C); error_lineno = zend_get_executed_lineno(TSRMLS_C); --Wez.