美文网首页
php array_map 爬坑之路

php array_map 爬坑之路

作者: 高校邦MOOC | 来源:发表于2017-10-31 17:44 被阅读24次

    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 );
    

    相关文章

      网友评论

          本文标题:php array_map 爬坑之路

          本文链接:https://www.haomeiwen.com/subject/hmobpxtx.html