芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/vendor/azjezz/psl/src/Psl/Math/max.php
$numbers * * @return T|null * * @pure */ function max(array $numbers): null|int|float { $max = null; foreach ($numbers as $number) { if (null === $max || $number > $max) { $max = $number; } } return $max; }