|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2006-05-16 21:51 UTC] edacval at gmail dot com
Description:
------------
php_ini:
mbstring.strict_detection = On
phpinfo() show:
<snippet>
Directive Local Value Master Value
mbstring.strict_detection Off Off
</snippet>
Reproduce code:
---------------
<?php
phpinfo();
ini_set("mbstring.strict_detection", "On");
phpinfo();
?>
Expected result:
----------------
Directive Local Value Master Value
mbstring.strict_detection On Off
mbstring.strict_detection On Off
Actual result:
--------------
Directive Local Value Master Value
mbstring.strict_detection Off Off
mbstring.strict_detection On Off
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 06:00:01 2025 UTC |
# php /tmp/1.php | grep strict_detect mbstring.strict_detection => Off => Off mbstring.strict_detection => On => Off # cat /tmp/1.php <?php phpinfo(); ini_set("mbstring.strict_detection", "On"); phpinfo(); ?># php /tmp/1.php | grep strict_detect mbstring.strict_detection => Off => Off mbstring.strict_detection => On => Off # cat /tmp/1.php <?php phpinfo(); ini_set("mbstring.strict_detection", "On"); phpinfo(); ?> Same result