Re: [PHP-DB] How to know the name of a function ?

2008-11-09 Thread Stut
On 9 Nov 2008, at 21:41, Jean-Philippe Battu wrote: In a function, what is the best way to know the name of this function ? I read the documentation and found only func_num_args(), func_get_arg() and func_get_args which are relative to the arguments given to the function. What is the equivalent t

[PHP-DB] How to know the name of a function ?

2008-11-09 Thread Jean-Philippe Battu
Hello In a function, what is the best way to know the name of this function ? I read the documentation and found only func_num_args(), func_get_arg() and func_get_args which are relative to the arguments given to the function. What is the equivalent to $0 (bash) in php ? Thanks for your help Ch