┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
webm008.cluster103.gra.hosting.ovh.net
LOCATION:
/home/paxmediccp/www/old wp/wp-includes/Requests/Utility
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: FilteredIterator.php
<?php /** * Iterator for arrays requiring filtered values * * @package Requests * @subpackage Utilities */ /** * Iterator for arrays requiring filtered values * * @package Requests * @subpackage Utilities */ class Requests_Utility_FilteredIterator extends ArrayIterator { /** * Callback to run as a filter * * @var callable */ protected $callback; /** * Create a new iterator * * @param array $data * @param callable $callback Callback to be called on each value */ public function __construct($data, $callback) { parent::__construct($data); $this->callback = $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; } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 CaseInsensitiveDictionary.php
PHP
1.9 KB
2016-08-18 14:03
EDIT
📄 FilteredIterator.php
PHP
829 B
2016-08-18 14:03
EDIT