Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

You can call a function by name:

    $foo = "file_get_contents";
    $bar = "http://example.com/";
    $baz = $foo($bar);
In PHP 7 this doesn't even require you to give the function name its own variable:

    ("file_get_contents")("http://example.com/");


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: