简单类型 / 数字 / 数学运算

<?php

$minValue = min(213);
//minValue is 1

$maxValue = max(213);
//maxValue is 3

echo $minValue, "\n";
echo $maxValue, "\n";