Hi!

> generator function f() {
>   echo "Hello World";
> }

even more interesting,
$a = generator function() {
        echo "Hello World";
}

or even:

function foo() {
        return generator function() {
                echo "Hello World";
        }
}

$a = foo();

-- 
Stanislav Malyshev, Software Architect
SugarCRM: http://www.sugarcrm.com/
(408)454-6900 ext. 227

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to