哦。。曾经的痛。。。。
<?php $arr = [1]; for ($i=0; $i < 10 ; $i++) { for ($j=0; $j < count($arr); $j++) { echo $arr[$j]; echo " "; } echo "<br>"; $arr = getNext($arr); } function getNext($pre) { array_push($pre, 0); array_unshift($pre, 0); $next = []; for ($i=0; $i < count($pre)-1; $i++) { $next[] = $pre[$i] + $pre[$i+1]; } return $next; }