Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/Echo/includes/Iterator/CallbackIterator.php
Ðазад
<?php namespace MediaWiki\Extension\Notifications\Iterator; use Iterator; use IteratorDecorator; /** * Applies a callback to all values returned from the iterator */ class CallbackIterator extends IteratorDecorator { /** @var callable */ protected $callable; public function __construct( Iterator $iterator, $callable ) { parent::__construct( $iterator ); $this->callable = $callable; } public function current() { return call_user_func( $this->callable, $this->iterator->current() ); } } class_alias( CallbackIterator::class, 'EchoCallbackIterator' );
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка