Hudzilla.org - the homepage of Paul Hudson
Contents > Functions > Mathematics Wish List | Report Bug | About Me ]

4.6.6     Mathematical constants

This is NOT the latest copy of this book; click here for the latest version.

There are several values in mathematics that are used in maths-related scripts but take some time to calculate, so, to save time, PHP defines them as constants available to you in every script. For example, if you want to use the value of Pi, you can just use the constant value M_PI.

For example, to calculate the area a of a circle based upon its radius r , the formula is a = pi * r 2. Using PHP we can write this as:

<?php
    $area
= M_PI * ($radius * $radius);
    
// or...
    
$area = M_PI * pow($radius, 2);
?>

Using PHP's built-in maths constants saves a lot of lengthy (and pointless) calculation, so keep in mind what you have got available to you if you ever need to use mathematical constants. Here is a list of the most popular constants:

Constant

Value

Meaning

M_PI

3.14159265358979323846

Pi

M_PI_2

1.57079632679489661923

Pi/2

M_PI_4

0.78539816339744830962

Pi/4

M_1_PI

0.31830988618379067154

1/Pi

M_2_PI

0.63661977236758134308

2/Pi

M_SQRTPI

1.77245385090551602729

sqrt(M_PI)

M_2_SQRTPI

1.12837916709551257390

2/sqrt(M_PI)

M_SQRT2

1.41421356237309504880

sqrt(2)

M_SQRT3

1.73205080756887729352

sqrt(3)

M_SQRT1_2

0.70710678118654752440

1/sqrt(2)





<< 4.6.5 Base conversion: bindec(), decbin(), dechex(), decoct(), hexdec(), octdec(), and base_convert()   4.7 Playing with strings >>
Table of Contents
Want to see this stuff in print? PHP in a Nutshell takes the core topics covered here, adds in thousands of edits from the editorial team and myself, and combines them to make an unbeatable reference for PHP programmers at all levels.



My latest book has hundreds more tips on how to use PHP, Apache, and MySQL, plus Perl, Python, shell scripts, performance tuning, and more!



Top-right shadow
 
Bottom-left shadow Bottom shadow

Comments from other readers
Be the first to add a comment to this chapter!



Add comment
Please note that by posting a comment here you are committing it to the public domain. This is important so that others can make use of your code themselves, and also so that I can incorporate helpful notes directly into the main text. Comments are limited to 2000 characters in length.

If you are reporting an error in the content, please tell me directly.

Your name/email address:
Your comment:
 
Now, in order to verify that you're a real person, please answer this simple question: what is eight plus zero?
The answer is:
(please write in
numbers, eg 19)


Top-right shadow
 
Bottom-left shadow Bottom shadow