Chapter 5 PHP
Chapter 5 PHP
Chapter Five
PHP
Example
<?php
echo(pi()); // returns 3.1415926535898
?>
Example
<?php
echo(min(0, 150, 30, 20, -8, -200)); // returns -200
echo(max(0, 150, 30, 20, -8, -200)); // returns 150
?>
Example
<?php
echo(sqrt(64)); // returns 8
?>