Functions Php

    $func = "sqrt";
    if (is_callable($func)) {
            print $func(49);
    }
?>