home/theblueo/www/wp-includes/Requests/Utility/FilteredIterator.php000064400000001476152141574620021637 0ustar00callback = $callback; } /** * Get the current item's value after filtering * * @return string */ public function current() { $value = parent::current(); $value = call_user_func($this->callback, $value); return $value; } }