Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In JavaScript nested functions are very useful: closures, private methods and what have you..

What are nested PHP functions for? Does anyone use them and what for?

Here's a small investigation I did

<?php
function outer( $msg ) {
    function inner( $msg ) {
        echo 'inner: '.$msg.' ';
    }
    echo 'outer: '.$msg.' ';
    inner( $msg );
}

inner( 'test1' );  // Fatal error:  Call to undefined function inner()
outer( 'test2' );  // outer: test2 inner: test2
inner( 'test3' );  // inner: test3
outer( 'test4' );  // Fatal error:  Cannot redeclare inner()
share|improve this question
I could've sworn I read that support for this was being dropped in PHP6 but I can't find it anywhere. – Greg Jan 6 '09 at 10:18
1  
@greg I thought the whole plan for PHP6 was in up in the air anyway? – James Feb 10 '11 at 22:40

5 Answers

up vote 44 down vote accepted

There is none basically, I've always treated this as a side effect of the parser.

Eran Galperin is mistaken that these functions are somehow private, they are simply undeclared until outer() is run. They are also not privately scoped, they do polute the global scope albeit delayed. And as a callback the outer callback could still only be called once. I still don't see how that's helpful applying it on an array which very likely calls the alias more than once.

The only 'real world' example I could dig up is this which can only run once and could be rewritten cleaner IMO.

The only use I can think of is for modules to call a [name]_include method which sets several nested methods in the global space combined with

if (!function_exists ('somefunc')) {
  function somefunc() { }
}

checks.

PHP's OOP would obviously be a better choice :)

share|improve this answer
Yes, you are right. I've edited my answer to reflect it – Eran Galperin Jan 6 '09 at 10:33
6  
This is shocking. – rik.the.vik Sep 28 '09 at 22:59
4  
Yeah, really. That's brutally bad. – Tony Arkles Sep 29 '09 at 17:06
Great example link. I should start implementing that instead of inheritance! – zanlok Feb 10 '11 at 21:33
same as def declarations in Ruby – user102008 Aug 12 '11 at 7:01
show 2 more comments

If you are using PHP 5.3 you can get more Javacript-like behaviour with an anonymous function:

<?php
function outer() {
    $inner=function() {
        echo "test\n";
    };

    $inner();
}

outer();
outer();

inner(); //PHP Fatal error:  Call to undefined function inner()
$inner(); //PHP Fatal error:  Function name must be a string
?>

Output:

test
test
share|improve this answer
1  
+1 for actually answering a (basically) functional topic with a functional answer, and not OOP – Peter Host Oct 22 '12 at 19:28

Functions defined within functions I can't see much use for but conditionally defined functions I can. For example:

if ($language == 'en') {
  function cmp($a, $b) { /* sort by English word order */ }
} else if ($language == 'de') {
  function cmp($a, $b) { /* sort by German word order; yes it's different */ }
} // etc

And then all your code needs to do is use the 'cmp' function in things like usort() calls so you don't litter language checks all over your code. Now I haven't done this but I can see arguments for doing it.

share|improve this answer
1  
Back in the day, we would have called this self-modifying code. A great tool, but as dangerous as GOTO for abuse... – Killroy Nov 19 '09 at 14:49
2  
BAD idea. Better: use OO and not hack into the scripting engine particulars. – zanlok Feb 10 '11 at 21:35

Nested functions are useful in Memoization (caching function results to improve performance).

<?php
function foo($arg1, $arg2) {
    $cacheKey = "foo($arg1, $arg2)";
    if (! getCachedValue($cacheKey)) {
        function _foo($arg1, $arg2) {
            // whatever
            return $result;
        }
        $result = _foo($arg1, $arg2);
        setCachedValue($cacheKey, $result);
    }
    return getCachedValue($cacheKey);
}
?>
share|improve this answer
2  
I like this idea in principal, however, I don't think this will work on functions that accept arguments and you are caching based on these args. When the function is called a 2nd time, with different args, the result won't have been cached and you will attempt to redeclare _foo() which will result in a fatal error. – w3d Sep 13 '11 at 21:22

All of my php is OO, but I do see a use for nested functions, particularly when your function is recursive and not necessarily an object. That is to say, it does not get called outside of the function it is nested in, but is recursive and subsequently needs to be a function.

There's little point in making a new method for the express use of a single other method. To me that's clumsy code and sort-of not the point of OO. If you're never going to call that function anywhere else, nest it.

share|improve this answer

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.