array_map not working in classes

后端 未结 4 1146
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-24 01:00

I am trying to create a class to handle arrays but I can\'t seem to get array_map() to work in it.



        
4条回答
  •  失恋的感觉
    2020-12-24 01:18

    array_map($this->dash(), $data) calls $this->dash() with 0 arguments and uses the return value as the callback function to apply to each member of the array. You want array_map(array($this,'dash'), $data) instead.

提交回复
热议问题