PHP

Functions are Objects

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

José M. Vidal .

12 of 33