mirror of
https://github.com/php/php-src.git
synced 2026-04-10 09:33:06 +02:00
When stripping the namespace prefix, we can assume that this does not contain any colons, while the rest of the name may contain colons. Hence we must not use `strrchr()` but rather `strchr()` instead. Closes GH-8543.