php array_map 爬坑之路

array_map 每次用的时候,都提示报错

Warning: array_map() expects parameter 1 to be a valid callback, function '--' not found or invalid function name

每次出错都去各种百度,当时是解决了,没有记下来,下次的时候,时间间隔太久,脑子不好使,又忘了,然后又继续爬一次坑,这次必须得记下来!!!!!

 // Static outside of class context
array_map( array( 'ClassName', 'methodName' ), $array );

// Static inside class context
array_map( array( __CLASS__, 'methodName' ), $array );

// Non-static outside of object context
array_map( array( $object, 'methodName' ), $array );

// Non-static inside of object context
//我一般用这个,在类里 public function methodName(){};
array_map( array( $this, 'methodName' ), $array );