php无限分类报错怎么解决
程序员文章站
2023-12-24 11:24:09
...
//$this->arr 已经在类实例化时被初始化了
public function subtree($id=0,$level=0){
static $grandson=array();
foreach($this->arr as $key=> $value){
if ($value['parentid']==$id) {
$value['name']=str_repeat(' ', $level).$value['name'];
$grandson[$key]=$value;
$this->subtree($key,$level+1);
}
}
return $grandson;
}
error:Maximum function nesting level of '100' reached, aborting!--
public function subtree($id=0,$level=0){
static $grandson=array();
foreach($this->arr as $key=> $value){
if ($value['parentid']==$id) {
$value['name']=str_repeat(' ', $level).$value['name'];
$grandson[$key]=$value;
$this->subtree($key,$level+1);
}
}
return $grandson;
}
error:Maximum function nesting level of '100' reached, aborting!--
回复讨论(解决方案)
使用递归函数时,递归次数超过了100
xdebug.max_nesting_level = 100//xdebug最大循环次数的原因 吧100改大就行了
谢谢大神的指教
推荐阅读
-
php无限分类报错怎么解决
-
无法访问 您可能没有权限使用网络资源 帖几个PHP的无限分类实现想法~
-
php进行sql server操作报错解决办法
-
从android客户端通过post方法发出汉字到Php,Php返回客户端,就出现乱码?怎么解决
-
php遍历子文件,该怎么解决
-
yii2 php namespace 引出第三方非namespace库文件时候,报错:Class not found 的解决
-
PHP无限分类代码,支持数组格式化、直接输出菜单两种方式_php技巧
-
php+mysql不用递归实现的无限级分类实例(非递归),mysql递归
-
图片-php中文验证码这个问题怎么解决
-
smartprinter怎么用 php smarty 二级分类代码和模版循环例子