I am wondering how I can use a combination of the use() method and a reference to a callback:
array_filter($array, function($value) use($external_parameter) {
// Return ...
});
How can I include the use() method together with a reference to a callback?
array_filter($array, 'custom_callback_function'); // Where use()?