Math Function Library : Return Value : Functions PHP Source Code


PHP Source Code » Functions » Return Value »

 

Math Function Library




<?php
     function subtract($n1, $n2) {
          return $n1 - $n2;
     }
   
     function add($n1, $n2) {
          return $n1 + $n2;
     }
   
     function divide($n1, $n2) {
          if($n2 == 0)
               return -1;
          else
               return $n1 / $n2;
     }
   
     function multiply($n1, $n2)
     {
          return $n1 * $n2;
     }
   
     function to_pow($n1, $pow)
     {
          if($pow)
               return $n1 * to_pow($n1, $pow - 1);
          return 1;
     }
     print(to_pow(61"<br />");
     print(multiply(510"<br />");
     print(divide(510"<br />");
     print(subtract(1050"<br />");
     print(add(105"<br />");
?>
</body>
</html>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Functions
» Return Value