<?php
class Foo {
public $foo = 'foo';
}
class Set extends ArrayIterator
{
public $bar = 'bar';
}
$array = [
new Foo(),
];
$set = new Set($array);
var_dump(current($set));
Deprecated: current(): Calling current() on an object is deprecated in /in/BF8hY on line 18
string(3) "bar"
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
Deprecated: current(): Calling current() on an object is deprecated in /in/BF8hY on line 18
string(3) "bar"
Parse error: syntax error, unexpected '[' in /in/BF8hY on line 12
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[' in /in/BF8hY on line 12
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/BF8hY on line 4
Process exited with code 255.
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/BF8hY on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/BF8hY on line 4
Process exited with code 255.