3v4l.org

run code in 300+ PHP versions simultaneously
<?php $fruits = array( "apple" => "yummy", "orange" => "ah ya, nice", "grape" => "wow, I love it!", "plum" => "nah, not me" ); $obj = new ArrayObject( $fruits ); $it = $obj->getIterator(); // How many items are we iterating over? echo "Iterating over: " . $obj->count() . " values\n"; // Iterate over the values in the ArrayObject: while( $it->valid() ) { echo $it->key() . "=" . $it->current() . "\n"; $it->next(); } // The good thing here is that it can be iterated with foreach loop foreach ($it as $key=>$val) echo $key.":".$val."\n"; /* Outputs something like */ Iterating over: 4 values apple=yummy orange=ah ya, nice grape=wow, I love it! plum=nah, not me ?>
Output for 5.4.0 - 5.4.22
Parse error: syntax error, unexpected 'over' (T_STRING) in /in/KdOVj on line 29
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected T_STRING in /in/KdOVj on line 29
Process exited with code 255.

preferences:
186.31 ms | 1395 KiB | 58 Q