(PHP 5 >= 5.4.0)
La llamada de retorno debe aceptar al menos tres argumentos: el elemento actual, la clave actual y el iterador, respectivamente.
Ejemplo #1 Available callback arguments
<?php
/**
* Callback for CallbackFilterIterator
*
* @param $current Current item's value
* @param $key Current item's key
* @param $iterator Iterator being filtered
* @return boolean TRUE to accept the current item, FALSE otherwise
*/
function my_callback($current, $key, $iterator) {
// Your filtering code here
}
?>
Algún callable puede ser usado; como un string que contiene un nombre de función, un array para un método, o una función anónima.
Ejemplo #2 Callback basic examples
<?php
$dir = new FilesystemIterator(__DIR__);
// Filtro de archivos de gran tamaño ( > 100MB)
function is_large_file($current) {
return $current->isFile() && $current->getSize() > 104857600;
}
$large_files = new CallbackFilterIterator($dir, 'is_large_file');
// Filtro de directorios
$files = new CallbackFilterIterator($dir, function ($current, $key, $iterator) {
return $current->isDir() && ! $iterator->isDot();
});
?>