dragu
dragu

Reputation: 11

explode() and maximum function nesting level

I can found in logs errors like:, Maximum function nesting level of '100' reached, aborting!

The line is:

$keys = explode('.', $keys);

Any idea?

Upvotes: 0

Views: 139

Answers (1)

Santosh Pradhan
Santosh Pradhan

Reputation: 149

If you are using xdebug, increase the value of xdebug.max_nesting_level in your php.ini

http://xdebug.org/docs/all_settings#max_nesting_level

Upvotes: 0

Related Questions