Forum Moderators: coopster
simple question really.
I have a method DB::escape.
Right now im in a situation when i need to call this method like this: $this->db->escape().
So the question is: how to pass such call to array_map function? :-)
array_map(array($this, 'escape'), $array); to pass call to $this->escape. But what about $this->db->escape, cant really get this work..
F1, someone :-)