PHP external Get function parameter number _php tutorial

Source: Internet
Author: User
function War ($a, $b, $c)

{

$n = Func_num_args ();

Echo $n;

}

War (+/-);

Func_num_args () This function can only get the number of arguments in the function and cannot be obtained outside the function, what method can get the number of function arguments externally?

--------------------------------------------------------------------------------
Func_num_args () Gets the number of arguments passed to the host function

--------------------------------------------------------------------------------
Func_num_args () Gets the number of arguments actually passed, not the predefined number, so there should be no "externally obtained" argument.
PHP Code

function War ()

{

$n = Func_num_args ();

Echo $n;

}

War (+/-);

War (1,2,3,4);

War (in);
--------------------------------------------------------------------------------
It's really going to be "external". You can take advantage of the annotation of a custom function and use reflection to get

PHP Code
/**
* A custom function
*
* @param string $a
* @param string $b
* @param string $c
*/
function War ($a, $b, $c) {}

/**
* One Custom Function 2
*
* @param s ...

http://www.bkjia.com/PHPjc/371715.html www.bkjia.com true http://www.bkjia.com/PHPjc/371715.html techarticle function War ($a, $b, $c) {$n = Func_num_args (); Echo $n;} War (+/-); Func_num_args () This function can only get the number of arguments in the function and cannot be obtained outside the function, what is the method ...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.