I found the cause of the problem, that mbstring doesn't use INI property values themselves and it only updates the appropriate MBSTRG member in the INI handlers. Any ideas?
Moriyoshi [EMAIL PROTECTED] (Marcus Börger) wrote: <snip> > There must be something else (i tested all combinations before i committed) > but did it again now and here are the results: > > [EMAIL PROTECTED] php4-HEAD]$ grep html_errors ~/php-cli.ini > html_errors = On > [EMAIL PROTECTED] php4-HEAD]$ php -r 'var_dump(ini_get("html_errors"));' > string(1) "1" > [EMAIL PROTECTED] php4-HEAD]$ php -d html_errors=0 -r > 'var_dump(ini_get("html_errors"));' > string(1) "0" > > [EMAIL PROTECTED] php4-HEAD]$ grep html_errors ~/php-cli.ini > html_errors = Off > [EMAIL PROTECTED] php4-HEAD]$ php -r 'var_dump(ini_get("html_errors"));' > string(0) "" > [EMAIL PROTECTED] php4-HEAD]$ php -d html_errors=1 -r > 'var_dump(ini_get("html_errors"));' > string(1) "1" > > [EMAIL PROTECTED] php4-HEAD]$ grep html_errors ~/php-cli.ini > ;html_errors = Off > [EMAIL PROTECTED] php4-HEAD]$ php -r 'var_dump(ini_get("html_errors"));' > string(1) "1" > [EMAIL PROTECTED] php4-HEAD]$ php -d html_errors=0 -r > 'var_dump(ini_get("html_errors"));' > string(1) "0" > > However you reminded me that i must change the default setting. > marcus > > -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php