more php nesting intended?

dadada

New member
sf: a static function that returns an array
cref : a class reference

in php i can

$v=cref::sf(param);
echo $v[0];
but i want to include an index
echo cref::sf(param)[0]//doesnt work
 
Back
Top