|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-08-12 13:16 UTC] scottmac@php.net
[2009-08-12 18:51 UTC] tony at marston-home dot demon dot co dot uk
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 13 14:00:01 2025 UTC |
Description: ------------ Cannot set mbstring.func_overload via ini_set(), nor in htaccess Reproduce code: --------------- $result1 = ini_set('mbstring.func_overload', 2); // false $result2 = ini_get('mbstring.func_overload'); // 0 (should be 2) Expected result: ---------------- $result2 should be 2 as a result of the previous ini_set(). Actual result: -------------- ini_get() returns a result of 0 when it should be 2.