<?php
class Foo
{
public $id;
public function __construct(){
static $counter = 0;
$this->id = $counter;
++$counter;
}
}
$collection = [new Foo(), new Foo(), new Foo(), new Foo()];
print_r(array_column($collection, 'id'));
Parse error: syntax error, unexpected '[' in /in/8Tf8a on line 14
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[' in /in/8Tf8a on line 14
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/8Tf8a on line 5
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/8Tf8a on line 5
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/8Tf8a on line 5
Process exited with code 255.