이번에는 PHP에서 배열의 최대값을 찾는 방법에 대해 이야기하겠습니다. 다음은 실제 사례입니다.
말할 것이 많지 않습니다. 바로 코드로 넘어가겠습니다:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gbk" /> <title>php求数组中最大值</title> <style type="text/css"> table{ width: 980px; border:#000 solid 1px; margin: auto; } td{ border:#000 solid 1px; } </style> </head> <body> <?php //求数组中的最大值 $num=array(10,20,35,50,45,32,18); $max=$num[0]; for($i=1;$i<count($num);$i++){ if($num[$i]>$max){ $max=$num[$i]; } } echo '数组中最大的数为:'.$max; ?> </body> </html>
관련 권장 사항:
위 내용은 PHP에서 배열의 최대값을 찾는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!