php輸出數組的最大值和最小值

/* find the highest value */ print max(100, 70, 101, 50); // returns --> 101 $array = array(100, 701, 2, 4, 202); print max($array); // returns --> 701 /* find the lowest value */ print min(100, 7
相關文章
相關標籤/搜索