sort array in ascending order in php
<!DOCTYPE html>
<html>
<body>
<?php
$test_array = [12,2,1,5,6,8,13,28,7];
sort($test_array);
var_dump($test_array);
?>
</body>
</html>
sort array in ascending order in php
<!DOCTYPE html>
<html>
<body>
<?php
$test_array = [12,2,1,5,6,8,13,28,7];
sort($test_array);
var_dump($test_array);
?>
</body>
</html>
0Comments
Thanks you for commenting your questions. I will see question and respond you.