php - XDEBUG_PATH_EXCLUDE in xdebug.ini
one text
Solution:
XDEBUG_PATH_EXCLUDE is only used with , which can filter out files for code coverage or stack traces only, and not for debugging.
Even if you could add it in an ini file (you can't), it wouldn't do anything.
I would recommend that you find out how to solve your original problem, "As we are having problems with our umask for PHP processes...", instead of coming up with a "hack" to change the umask with an auto prepend file.
Source