<?php
function deeploop($i = 1)
{
echo $i;
$i++;
if ($i < 100) {
deeploop($i);
}
deeploop();
?>
Maximum function nesting level of '100' reached, aborting!
原来是要配置的啊。。。
不会报错啊