Hi All,
        I want to use "array_walk" function inside a class method. But the 
problem is i want the second argument to array_walk ( function name )
be a another function of the same class. when i gave like that its telling

Error : function not exist.

class some()
{

        function func1()
        {
        }
        function func2()
        {
                array_walk($array,"func1");
        }
}

What is the syntax or way to do this.


Thanks in Advance.

S.Murali Krishna
[EMAIL PROTECTED]  
===================================== 
We grow slow trying to be great
                                                                
                   - E. Stanley Jones
-------------------------------------


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to