|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-03-11 12:31 UTC] aharvey@php.net
-Status: Open
+Status: Feedback
[2010-03-11 12:31 UTC] aharvey@php.net
[2010-03-11 14:10 UTC] editor at fast dot st
[2010-03-11 14:18 UTC] aharvey@php.net
-Status: Open
+Status: Bogus
[2010-03-11 14:18 UTC] aharvey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 04:00:02 2025 UTC |
Description: ------------ I seem to be getting really messed up output when using str_replace in a certain situation. Test script: --------------- <?php $out = "[form] [form]"; print_r($out); print_r('<br>'); $out = str_replace('[form', '[fo<rm', $out); print_r($out); die(); Expected result: ---------------- The glitch is obvious...