Skip to content
Advertisement

How to use array_walk on class method that does not fit the $callback parameter order

i have a two dimensional array e.g

JavaScript

then I have a class function called

JavaScript

now how to use the array_walk with this function ?

I tried

JavaScript

I tried

JavaScript

none of these work..how to do it ?

Advertisement

Answer

According to documentation of array_walk:

phpdocs

Especially this line:

If the optional userdata parameter is supplied, it will be passed as the third parameter to the callback.

The extra parameter $userdata has to be at the 3rd parameter of your $callback. There is no way to workround the parameter order in array_walk(). But your method is clear using $dbConnection as the 1st parameter in your saveData() method.

There are 2 sensible ways to solve this:

  1. Change your class method. Either to store the database connection in your class instance to remove it entirely from the parameter needs:

    JavaScript

    or change the parameter order accord to the $callback requirement

    JavaScript
  2. Keep the method. Use an intermediate callback function instead:

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