For instance:
$str = '1, 2, 4, 13';
I'd like the effect to be as if it were:
func(1, 2, 4, 13)
$params = explode(', ', $str); call_user_func_array("func", $params);