Is there any way to access static property via variable that holds property name(Except of ReflectionClass and eval())?
class WhateverClass
{
public static $test = array('1','2');
public static $other = array('3','4');
}
$propName = 'test';
var_dump(WhateverClass::$propName);
WhateverClass::${$propName}?