Thread
:
Mathematical functions in PHP
View Single Post
#
11
(
permalink
)
04-16-2008, 10:43 PM
Jeyaseelansarc
D-Web Genius
Join Date: Mar 2007
Location: Chennai
Posts: 1,159
Re: Mathematical functions in PHP
exp()
calculates the exponent of e (the Neperian or Natural logarithm base)
example:
PHP Code:
<?php
echo
exp
(
12
) .
"\n"
;
echo
exp
(
5.7
);
?>
The above example will output:
Code:
1.6275E+005 298.87
__________________
With,
J. Jeyaseelan
Everything Possible
Jeyaseelansarc
View Public Profile
Send a private message to Jeyaseelansarc
Find all posts by Jeyaseelansarc