Forum und email

func_num_args

(PHP 4, PHP 5)

func_num_args — Returns the number of arguments passed to the function

Popis

int func_num_args ( void )

Gets the number of arguments passed to the function.

This function may be used in conjunction with func_get_arg() and func_get_args() to allow user-defined functions to accept variable-length argument lists.

Vrátené hodnoty

Returns the number of arguments passed into the current user-defined function.

Errors/Exceptions

Generates a warning if called from outside of a user-defined function.

Príklady

Example#1 func_num_args() example

<?php
function foo()
{
    
$numargs func_num_args();
    echo 
"Number of arguments: $numargs\n";
}

foo(123);    // Prints 'Number of arguments: 3'
?>

Poznámky

Note: Nakoľko táto funkcia závisí od aktuálnej škály určovania detailov parametra, nemôže sa použiť ako parameter funkcie. Ak musíte túto hodnotu použiť, priraďte výsledky do premennej a použite premennú.