Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

  1. Which one of the following PHP functions can be used to build a function that accepts any number of arguments?

  2. A.

     func_get_argv()

    B.

     func_get_argc()

    C.

     get_argv()

    D.

     get_argc()

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    Here is an example-

    <?php

    function foo()

    {

    $args = func_get_args();

    foreach ($args as $k => $v)

    {

    echo "arg".($k+1).": $vn";

    }

    }

    foo();

    /* will print nothing */

    foo("Hello");

    /* will print Hello */

    foo("Hello","World","Bye");

    /* will print Hello World Bye */

    ?>


Be The First To Comment