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] ja...@php.net
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