5 lines
48 B
PHP
5 lines
48 B
PHP
|
|
<?php
|
||
|
|
$nums = array(2,4,3,1,2);
|
||
|
|
sort($nums);
|
||
|
|
?>
|