ID: 40617 User updated by: nevermind at address dot org -Reported By: slacouette at edma dot com +Reported By: nevermind at address dot org -Status: Open +Status: Closed Bug Type: Strings related Operating System: linux (FC6) PHP Version: 5.2.1 New Comment:
Likely this is too obscure to find with what I've provided. Previous Comments: ------------------------------------------------------------------------ [2007-02-24 01:55:22] nevermind at address dot org Description: ------------ Repeated calls to str_ireplace appear to cause memory corruption if replacement is made. In my web application, the resulting string will "echo" fine but html page generated in subsequent class module is never served. str_replace works fine. Code working fine until upgrade to 5.2.1. Thanks - great stuff you guys do! Reproduce code: --------------- $str_s = str_replace( array('(t)', '(tm)', '™', chr(153)), ' (trade marked)', $str_s ); $str_s = str_replace( array('(r)', '(reg)', '®', chr(174)), ' (registered)', $str_s ); $str_s = str_replace( array('(c)', '(copy)', '©', chr(169)), ' (copyrighted)', $str_s ); Expected result: ---------------- proper substitution and web page served Actual result: -------------- guessing memory corruption as html never generated. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=40617&edit=1