There is one very bad limit in PHP: if you call some function a1() that calls a2(), that calls a3... so when a99() will call a100() you will see

Fatal error: Maximum function nesting level of '100' reached, aborting!

Is there any way to increase limit of 100 nesting call to 500 or 10000? This is critical for me because I'm developing event-based system with a lot of callbacks.

Thank you!

link|improve this question

75% accept rate
3  
100 seems a little excessive, even for an event framework. – Ignacio Vazquez-Abrams Nov 27 '10 at 20:47
@Ignacio: it's quite simple, even if the focus is on an event framework, to have a recursive function that needs a much higher nesting level. Tens of thousands (or even millions) is not uncommon in such scenario's. – Abel Dec 28 '11 at 12:50
feedback

3 Answers

up vote 27 down vote accepted

This error message comes specifically from the XDebug extension. PHP itself does not have a function nesting limit. Change the setting in your php.ini:

xdebug.max_nesting_level = 200

As for if you really need to change it (i.e.: if there's a alternative solution to a recursive function), I can't tell without the code.

link|improve this answer
feedback

That error tells you that you have something like a recursion error. Are you sure that you're doing the right things over there?

As far as I know, there's a limit called max_input_nesting_level in php.ini, but i don't know if this is the right choice, to increase this limit...

link|improve this answer
Yes, I'm doing the right thing: "...I'm developing event-based system with a lot of callbacks.", and No "max_input_nesting_level" is not solution for this situation. But thanx for your response! – SeniorDev Nov 27 '10 at 20:57
well i'm sorry if that wasn't helpfull, i was just trying to help... – misterjinx Nov 27 '10 at 20:59
feedback

Do you have Zend, IonCube, or xDebug installed? If so, that is probably where you are getting this error from.

I ran into this a few years ago, and it ended up being Zend putting that limit there, not PHP. Of course removing it will let you go past the 100 iterations, but you will eventually hit the memory limits.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.