diff options
Diffstat (limited to 'ext/spl/tests/SplFixedArray_offsetUnset_string.phpt')
| -rw-r--r-- | ext/spl/tests/SplFixedArray_offsetUnset_string.phpt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/spl/tests/SplFixedArray_offsetUnset_string.phpt b/ext/spl/tests/SplFixedArray_offsetUnset_string.phpt index 5c9431ec24..3b0e6bb222 100644 --- a/ext/spl/tests/SplFixedArray_offsetUnset_string.phpt +++ b/ext/spl/tests/SplFixedArray_offsetUnset_string.phpt @@ -6,17 +6,17 @@ PHPNW Testfest 2009 - Paul Court ( g@rgoyle.com ) <?php // Create a fixed array $fixedArray = new SplFixedArray(5); - + // Fill it up - for ($i=0; $i < 5; $i++) { + for ($i=0; $i < 5; $i++) { $fixedArray[$i] = "PHPNW Testfest"; } - + // remove an item $fixedArray->offsetUnset("4"); - + var_dump($fixedArray); - + ?> --EXPECT-- object(SplFixedArray)#1 (5) { |
