Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Vec/concat.php
Назад
<?php declare(strict_types=1); namespace Psl\Vec; /** * Returns a new list formed by concatenating the given lists together. * * @template T * * @param list<T> $first * @param iterable<T> ...$rest * * @return list<T> */ function concat(array $first, iterable ...$rest): array { $first = values($first); foreach ($rest as $arr) { foreach ($arr as $value) { $first[] = $value; } } return $first; }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка