<?php $x = 10; $y = 15; [$min, $max] = ($x < $y) ? [$x, $y] : [$y, $x]; echo $min . " jest mniejszą wartością od " . $max;
You have javascript disabled. You will not be able to edit any code.