moriyoshi               Thu Mar  6 14:37:19 2003 EDT

  Modified files:              
    /php4/tests/lang    bug19943.phpt 
  Log:
  Further testing on this feature should have been done... 
  
  
Index: php4/tests/lang/bug19943.phpt
diff -u php4/tests/lang/bug19943.phpt:1.1 php4/tests/lang/bug19943.phpt:1.2
--- php4/tests/lang/bug19943.phpt:1.1   Thu Mar  6 11:29:05 2003
+++ php4/tests/lang/bug19943.phpt       Thu Mar  6 14:37:19 2003
@@ -11,6 +11,9 @@
        for ($count = 0; $count < 10; $count++) {
                echo $ar[$count]." -- ".$ar[$count]['idx']."\n";
        }
+       $a = "0123456789";
+       $a[9] = $a{0};
+       var_dump($a);
 ?>
 --EXPECT--
 0 -- 0
@@ -23,3 +26,4 @@
 7 -- 7
 8 -- 8
 9 -- 9
+string(10) "0123456780"



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to