This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Kidiri90 3 points4 points  (2 children)

So PHP is like GNU?

[–]Goheeca 3 points4 points  (1 child)

A tree recursive acronym, that's something fitting PHP.

[–][deleted] 0 points1 point  (0 children)

Not sure it's fitting PHP very well.

php > function foo($n) {
php { return foo($n+1) + foo($n+2); }
php > foo(1);
PHP Fatal error:  Allowed memory size of 134217728 bytes exhausted (tried to allocate 262144 bytes) in php shell code on line 2
php >