Requests_Utility_FilteredIterator::current()
Get the current item’s value after filtering
Return
(string)
Source
File: wp-includes/Requests/Utility/FilteredIterator.php
public function current() {
$value = parent::current();
if (is_callable($this->callback)) {
$value = call_user_func($this->callback, $value);
}
return $value;
}
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_utility_filterediterator/current