### Description I suggest removing the null byte from an anonymous class name, which can be visible in stack traces. Precisely, it's about this line: https://github.com/php/php-src/blob/master/Zend/zend_compile.c#L9024 It causes problems in observability and testing, and requires workarounds. Example I found: - https://github.com/Multiply/paratest/commit/e8f9cd485493756b3ba24f3df343d8609436d366 - https://github.com/brendangregg/FlameGraph/issues/280 - https://github.com/nette/tester/pull/450 The change is trivial, but it would be BC break.