[GIT-PULLS] [php-src] PR #23354: Fix persistent PDO hash key colliding on colon in credentials
[email protected] (iliaal)
| Newsgroups | php.git-pulls |
|---|---|
| Message-ID | <c5YWLzwnnjACkhO67oLMvCirg0F1G0KEawqqzYlRHmw@main.internal.php.net> |
Pull Request: https://github.com/php/php-src/pull/23354 Author: iliaal Persistent PDO built the connection cache key by joining DSN, username, and password with colons, so admin/s:ecret and admin:s/ecret reused one handle. Each field is now length-prefixed, including a string ATTR_PERSISTENT key.