W3cubDocs

/WordPress

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();
		$value = call_user_func($this->callback, $value);
		return $value;
	}

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_utility_filterediterator/current