PHP Math
PHP Math PHP pi() Function The pi() function returns value of the PI: echo(pi()); // returns value is 3.1415926535898 ?> PHP min() and max() Functions The min() and max() functions can be used to find the lowest or highest value in a list of arguments: <?php echo(min(0, 150, 30, 20, -8, -200)); // returns -200 […]