function func_num_args () used to get the number of arguments passed to the function .
e.g :
<?php
function students()
{
$no_of_arguments = func_num_args();
echo "No Of Arguments = $no_of_arguments”;
}
student($name , $age ,$address); // function call
?>
OUTPUT : No Of Arguments = 3