Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have made a function that finds all the URLs within an html file and repeats the same process for each html content linked to the discovered URLs. The function is recursive and can go on endlessly. However, I have put a limit on the recursion by setting a global variable which causes the recursion to stop after 100 recursions.

However, php returns this error:

Fatal error: Maximum function nesting level of '100' reached, aborting! in D:\wamp\www\crawler1\simplehtmldom_1_5\simple_html_dom.php on line 1355

ERROR

I found a solution here: Increasing nesting functions calls limit but this is not working in my case.

I am quoting one of the answers from the link mentioned above. Please do consider it.

"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."

Is there a way to increase the maximum function nesting level in PHP

share|improve this question
You refer to a question that is about the XDebug extension. Perhaps you are not using that. You are saying yourself in your own text that you have set a global variable. Isn't your own code returning this error? (PS: have a look at your accept rate) – Abel Dec 28 '11 at 12:51
2  
have you installed xdebug? (p.s. your acceptance rate is very low!) – ThinkingMonkey Dec 28 '11 at 12:52
2  
Also: PHP doesn't have a limit on nested function calls, it must be an extension you're using that causes this. – Abel Dec 28 '11 at 12:57
@Abel I am sure that my code has no errors. There is a static variable which increments its value by one on each recursive call. If that variable is less than 100, the recursive calls go on until the variable reaches 100. I mean to say that the variable reaching 100 is actually the base case. While the error arises before 100 recursions. And as you have mentioned that some extension my be causing this, I would like to mention that I am using functions from simple_html_dom.php. If you have any idea about simple_html_dom.php, please help me in this regard. Please refer to updated question. – Spoilt Dec 28 '11 at 13:13
2  
That is an error by xdebug. From the screenshot it's visible you use xdebug. You can disable the setting here: xdebug.max_nesting_level or tell how large the nesting level is. – hakre Jun 2 '12 at 13:52
show 1 more comment

5 Answers

Increase the value of xdebug.max_nesting_level in your php.ini: http://xdebug.org/docs/all_settings#max_nesting_level

share|improve this answer

Rather than going for a recursive function calls, work with a queue model to flatten the structure.

$queue = array('http://example.com/first/url');
while (count($queue)) {
    $url = array_shift($queue);

    $queue = array_merge($queue, find_urls($url));
}

function find_urls($url)
{
    $urls = array();

    // Some logic filling the variable

    return $urls;
}

There are different ways to handle it. You can keep track of more information if you need some insight about the origin or paths traversed. There are also distributed queues that can work off a similar model.

share|improve this answer
With SPL you do not need to reinvent the queue: php.net/manual/en/class.splqueue.php – Francesco Dec 28 '11 at 13:40
SPL Queue might provide a bit more speed, but I like sticking to arrays for most simple tasks. push/pop/shift/unshift are all provided. – Louis-Philippe Huberdeau Dec 28 '11 at 15:30
up vote 7 down vote accepted

A simple solution solved my problem. I just commented the:

"zend_extension = "d:/wamp/bin/php/php5.3.8/zend_ext/php_xdebug-2.1.2-5.3-vc9.dll"

in php.ini file. This extension was limiting the stack to 100 so I disabled it. The recursive function is now working as anticipated.

share|improve this answer
1  
So, eventually it was the XDebug extension after all... Good to know. In two days you can accept your own answer as accepted answer, if you want (and have a look at your previous questions, most miss an accepted answer). – Abel Dec 29 '11 at 14:47
2  
Dealing with the excessive recursion is surely better than just turning off the monitoring. – petesiss Aug 30 '12 at 13:50
3  
That's a heavy-handed approach. The above answers that mention the variable to adjust the max stack depth is a better approach. – Aredridel Dec 4 '12 at 14:43

You could convert your recursive code into an iterative code, which simulates the recursion. This means that you have to push the current status (url, document, position in document etc.) into an array, when you reach a link, and pop it out of the array, when this link has finished.

share|improve this answer

You could try to wiggle down the nesting by implementing parallel workers (like in cluster computing) instead of increasing the number of nesting function calls.

For example: you define a limited number of slots (eg. 100) and monitor the number of "workers" assigned to each/some of them. If any slots become free, you put the waiting workers "in them".

share|improve this answer
That's not really a generally applicable approach. That's more sensible to parallelize, not avoid stack depth. – Aredridel Dec 4 '12 at 14:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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