|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-05-26 12:26 UTC] johannes@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 20:00:01 2025 UTC |
Description: ------------ PHP Version 5.2.1 (form wouldn't let me select this version) Reassigning a string index to '' doesn't modify the string's length. Reproduce code: --------------- $ php -r '$str = "foo"; $str{0} = ""; var_dump($str);' Expected result: ---------------- string(2) "oo" Actual result: -------------- string(3) "oo"