Simple types / Numbers / Mathematical operations

<?php

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

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

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