mirror of
https://github.com/php/php-src.git
synced 2026-03-31 04:32:19 +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.