I want to execute a string containing static function call
$string="ClassName::function()";
Let
ClassName=ABC & function=abc
so
$string="ABC::abc()";
the function abc returns a array
now what i want is
$array=$string;
It should execute $string and store the returned array into $array