RosettaCodeData/Task/Sort-an-integer-array/PHP/sort-an-integer-array.php

5 lines
48 B
PHP

<?php
$nums = array(2,4,3,1,2);
sort($nums);
?>