ID: 42085 Updated by: [EMAIL PROTECTED] Reported By: arjen at react dot nl -Status: Assigned +Status: Closed Bug Type: mbstring related Operating System: Linux PHP Version: 5.2.3 Assigned To: hirokawa 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: ------------------------------------------------------------------------ [2007-08-17 13:48:34] [EMAIL PROTECTED] Assigned to the maintainer of mbstring extension. ------------------------------------------------------------------------ [2007-07-24 10:53:10] arjen at react dot nl Description: ------------ >From the manual: Note: As of PHP 5.2.0 offset may be specified to begin searching an arbitrary number of characters into the string. Negative values will stop searching at an arbitrary point prior to the end of the string. Negative offsets are not working. Reproduce code: --------------- var_dump(mb_strrpos('abcd', 'd', -2)); var_dump(mb_strrpos('abcdd', 'd', -2)); Expected result: ---------------- boolean false int 3 Actual result: -------------- int 3 int 4 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=42085&edit=1