|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-08-02 20:56 UTC] moriyoshi@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Jan 12 07:00:01 2026 UTC |
Description: ------------ Some per-dir or runtime settings that is set in a request pollutes the global state of the extension and they leak into another request when the web server's forked instances are reused between connections and no corresponding system settings are provded. Reproduce code: --------------- <?php // run without any system settings. // if the language is set to neutral, // the default value for the internal encoding is ISO-8859-1 var_dump(mb_internal_encoding()); ini_set('mbstring.internal_encoding', 'UTF-8'); var_dump(mb_internal_encoding()); ?> Expected result: ---------------- The first request: ISO-8859-1 UTF-8 The second request: ISO-8859-1 UTF-8 Actual result: -------------- The first request: ISO-8859-1 UTF-8 The second request: UTF-8 UTF-8