I want to filter an array, using the array_filter function. It hints at using call_user_func under water, but does not mention anything about how to use within the context of a
Yes:
return array_filter($this->get_docs(), array($this, 'filter_item'));
See the documentation for the callback type.