php輸入幾個數(shù)從大到小排序
以下程序?qū)崿F(xiàn)了在網(wǎng)頁輸入幾個數(shù),按照從大到小排序并輸出的功能,希望對需要的朋友有幫助:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <p>請輸入要排序的數(shù)據(jù)</p> <form id="form1" name="form1" method="post" action=""> <input name="textfield" type="text" id="textfield" size="15" maxlength="15" />- <input name="textfield2" type="text" id="textfield2" size="15" />- <input name="textfield3" type="text" id="textfield3" size="15" />- <input name="textfield4" type="text" id="textfield4" size="15" />- <input name="textfield5" type="text" id="textfield5" size="15" /> <input type="submit" name="button" id="button" value="提交" /> </form> </body> </html> <?php if(isset($_POST['button'])){ echo "排序后的數(shù)據(jù)如下所示:"; echo '<br/>'; $array=array( "0"=>$_POST['textfield'], "1"=>$_POST['textfield2'], "2"=>$_POST['textfield3'], "3"=>$_POST['textfield4'], "4"=>$_POST['textfield5'],);//把數(shù)字存到數(shù)組中 rsort($array); foreach($array as $key => $value){ echo $value;//循環(huán)
更多PHP相關(guān)知識,請訪問PHP中文網(wǎng)!
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com