Get function parameters outside of PHP

Source: Internet
Author: User
Tags php code

function War ($a, $b, $c)

{

$n = Func_num_args ();

Echo $n;

}

War (1,2,3);

Func_num_args () This function can only get the number of parameters inside the function can not be obtained outside the function, what method can get the number of function parameters outside?

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

--------------------------------------------------------------------------------
Func_num_args () Gets the number of parameters that are 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 (1,2,3);

War (1,2,3,4);

War (1,2);
--------------------------------------------------------------------------------
It's really about "getting outside." You can use the annotations of a custom function to get

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

/**
* A custom Function 2
*
* @param s ...

Related Article

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.