ID: 39364 Updated by: [EMAIL PROTECTED] Reported By: christoph at ziegenberg dot de -Status: Open +Status: Closed Bug Type: mbstring related Operating System: Win XP SP 2 PHP Version: 5.2.0 New Comment:
This bug has been fixed in CVS. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2006-11-03 20:19:28] christoph at ziegenberg dot de No, that is not the same bug! Bug #39361 is about that the ini settings for function overloading are "cached" and still active when changing the directory. Bug #39364 is about the different behavior of mb_strstr() and strstr(). I found bug number one when checking the second one, but that not the same bug... so which one did you fix? ------------------------------------------------------------------------ [2006-11-03 19:56:40] [EMAIL PROTECTED] Please do not submit the same bug more than once. An existing bug report already describes this very problem. Even if you feel that your issue is somewhat different, the resolution is likely to be the same. Thank you for your interest in PHP. dupe of 39361 ------------------------------------------------------------------------ [2006-11-03 17:38:23] christoph at ziegenberg dot de Description: ------------ as described in the more important bug #39361 i compared strstr() and mb_strstr(). mb_strstr() produces the following error when using an empty haystack: Warning: mb_strstr() [function.mb-strstr]: Empty haystack in X on line Y but strstr() doesn't. Reproduce code: --------------- <?php strstr('', ','); mb_strstr('', ','); ?> Expected result: ---------------- no error message - because haystack does not contain needle, so the function should return false, as described in the documentation. the different behavior produces a lot of errors when using function overloading (although i know using it is not a good idea... ;). Actual result: -------------- Warning: mb_strstr() [function.mb-strstr]: Empty haystack in X on line Y ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=39364&edit=1