我正在尝试从array_map
匿名函数中调用我的对象的方法之一。到目前为止,我收到了预期的错误:
致命错误:当不在对象上下文中时使用 $this...
我知道为什么我会收到这个错误,我只是不知道如何实现我想要的......有人有什么建议吗?
这是我当前的代码:
// Loop through the data and ensure the numbers are formatted correctly
array_map(function($value){
return $this->some_method($value,'value',false);
},$this->mssql->data[0]['results'][0]);