show/hide this revision's text 5 Added more under control than eval

Variable variables and functions without a doubt!

$foo = 'bar';
$bar = 'foobar';
echo $$foo;    //This outputs foobar

function bar() {
    echo 'Hello world!';
}

function foobar() {
    echo 'What a wonderful world!';
}
$foo();    //This outputs Hello world!
$$foo();    //This outputs What a wonderful world!

The same concept applies to object parameters ($some_object->$some_variable);

Very, very nice. Make's coding with loops and patterns very easy, and it's faster and more under control than eval (Thanx @Ross!).tRoss & @Joshi Spawnbrood!).t

show/hide this revision's text 4 added 43 characters in body

Variable variables and functions without a doubt!

$foo = 'bar';
$bar = 'foobar';
echo $$foo;    //This outputs foobar

function bar() {
    echo 'Hello world!';
}

function foobar() {
    echo 'What a wonderful world!';
}
$foo();    //This outputs Hello world!
$$foo();    //This outputs What a wonderful world!

The same concept applies to object parameters ($some_object->$some_variable);

Very, very nice. Make's coding with loops and patterns very easy., and it's faster than eval (Thanx @Ross!).t

show/hide this revision's text 3 Fixed function calls

Variable variables and functions without a doubt!

$foo = 'bar';
$bar = 'foobar!';
foobar';
echo $$foo    $foo;    //This outputs foobar

!

function foobar(bar() {
    echo 'Hello world!';
}

function foobar() {
    echo 'What a wonderful world!';
}
$$foo();    foo();    //This outputs Hello world!
$$foo();    //This outputs What a wonderful world!

The same concept applies to object parameters ($some_object->$some_variable);

Very, very nice. Make's coding with loops and patterns very easy.

show/hide this revision's text 2 Fixed variable call to foobar
show/hide this revision's text 1