I want to use values in an array as independent arguments in a function call. Example:
// Values \"a\" and \"b\" $arr = array(\"alpha\", \"beta\"); // ... ar
You can do that using call_user_func_array(). It works wonders (and even with lambda functions since PHP 5.3).