Re: Function Overloading

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



If all you want to do is pass an unknown number of arguments to a function, this looks like it demonstrates what you're doing:

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

foo(1, 2, 3);    // Prints 'Number of arguments: 3'
?> 

Found it at:
http://www.php.net/manual/en/function.func-num-args.php


= = = Original message = = =

"PHP does not support function overloading."
So, is there any other way of getting a number of parameters(variables) 
passed to a function?

aka.
function fruits($apple, $banana, $kiwi, $grape)

#should (somehow) output 4



OK. if it was an array, than I could use count($array), but now I'm stuck!

Thanks in advance! 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


___________________________________________________________
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux