|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-02-26 14:03 UTC] zak@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 23:00:01 2025 UTC |
<?php function test($foo = 'bar') { for($i=0; $i<5; $i++) { !isset($foo[$i]) ? $foo[$i] = 0 : 0; echo $foo[$i]; } } test(); ?> works fine on 4.0.6; 4.1.1 (linux and win32) announces "Uninitialized string offset on line 6..."