数组按升序和降序排序

时间:2017-11-05 07:33:30

标签: php

我想在php中编写一个代码,它会在点击相应的按钮时按升序和降序对我的数组(1,4,3,5,6,2,7,9,8)进行排序?怎么做请帮忙。

1 个答案:

答案 0 :(得分:1)

我提供以下解决方案:

<form action="" method="post">
<input type="submit" name="but1" value="ASC">
<input type="submit" name="but2" value="DESC">
<?php

$a = [1,4,3,5,6,2,7,9,8];
if (isset ($_REQUEST['but1'])) {
    sort ($a);
    print_r($a);
}
if (isset ($_REQUEST['but2'])) {
    rsort ($a);
    print_r($a);
}
?>

</form>