Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Drupal 与 Civicrm 合作。我创建了一个自定义导入部分。每当我提交映射表单时,它都会显示这种错误:
致命错误:达到“100”的最大函数嵌套级别,正在中止!在 C:\wamp\www\crmdev\includes\common.inc 的第 290 行
我该如何解决这个问题,以及如何重置嵌套级别?
如果您使用的是 xdebug 扩展, 您可以这样做ini_set('xdebug.max_nesting_level', 200)
ini_set('xdebug.max_nesting_level', 200)
xdebug.max_nesting_level
您的代码几乎可以肯定有一个无底递归,但是如果不看代码就很难确定。
最大嵌套级别通常由 zend/xDebug 设置,如果在没有这些的情况下发生无限递归,您将获得段错误,您应该专注于修复该无限递归...