|
Posted by Juliette on 09/15/06 14:23
iulian.ilea wrote:
> Me, back again with another question about function:
> if I have this function me($param1, $param2=null, $param3,
> $param5=null, $param6=null) how can I found how many parameters are
> send in function when the function is called?
> i.e.: me($masa,null,$oiu,$doiu,null,$noidoi)
> I want to know if it exists a function that does this.
>
func_num_args()
http://www.php.net/function.func_num_args
[Back to original message]
|