#Unformatted Code Demo
function array_extends()     {
        $args      = func_get_args();
        $argNumbers =     func_num_args();
        $a = 'aa'  ;
        var_dump($args);
}

Functions:

func_get_args()
OR
func_num_args

FMT NOT WORKING

Thank you raypard for noticing!

We'll fix that, it's caused by a special handling of functions with varargs.

    Thank you for reporting! This is fixed in the pre-release version.

      Write a Reply...