Skip to content
Advertisement

How do I use a class method as a callback function?

If I use array_walk inside a class function to call another function of the same class

JavaScript

It gives me the following error –

Warning: array_walk() [function.array-walk]: Unable to call test_print() – function does not exist in …

So, how do I specify $this->test_print() while using array_walk()?

Advertisement

Answer

If you want to specify a class method as a callback, you need to specify the object it belongs to:

JavaScript

From the manual:

A method of an instantiated object is passed as an array containing an object at index 0 and the method name at index 1.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement