Thread: return keyword
View Single Post
Old 06-27-2008, 07:10 PM   #7 (permalink)
xenon
The Frequenter
Newcomer 
 
xenon's Avatar
 
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
xenon is on a distinguished road
Default

What are you talking about?

PHP Code:
function test_func()
{
    return 
'return value of the test function';
}

eval(
'$return = test_func();');

echo 
$return
$return will contain exactly the string returned by the function. So, what is the problem? I really don't see why you would want to do such thing anyway...
__________________
I have optimistic thoughts, even though sometimes (if not always) life's a bitch.
xenon is offline  
Reply With Quote