PHP cos()

PHP cos(x) function returns the cosine value of x. The principle values for x is [-∞,∞].

<?PHP
	echo cos(M_PI); //-1
	echo cos(M_PI/3); //0.5
?>

deg2rad() function can be used to convert degree to radian angle.

<?PHP
	echo cos(deg2rad(60));  //0.5
	echo cos(deg2rad(30));  //0.86602540378444
?>

Cosine y=cos(x) Graph

X( degree ̊ )
X(Rad)
Y = Cosine(X)
180 ̊
π
-1
150 ̊
5π/6
-0.866025
135 ̊
3π/4
-0.707107
120 ̊
2π/3
-0.5
90 ̊
π/2
0
60 ̊
π/3
0.5
45 ̊
π/4
0.707107
30 ̊
π/6
0.866025
0 ̊
0
1
:: PHP Tutorials Home ::
PHP String Functions
 • concatenation • echo
 • ereg • ereg_replace
 • explode • htmlspecialchars
 • preg_match • preg_replace
 • preg_split • print,sprintf
 • regular expr. • str_replace
 • strcmp • strpos
 • strrev • strrpos
 • strtr • substr
 • substr_replace
PHP Array Functions
 • array_diff • array_flip
 • array_intersect • array_key_exists
 • array_keys • array_merge
 • array_pop • array_push
 • array_rand • array_search
 • array_splice • array_unshift
 • array_values • asort & arsort
 • count • in_array
 • ksort • shuffle
 • sort
PHP Data Types
 • array • associative array
 • date & time • number
 • class, object • regular expression
 • string • variables
PHP Loop & Conditions
 • continue & break • for loop
 • foreach • if else
 • not equal • while
PHP File System Functions
 • copy • delete, unlink
 • dirname • download url
 • file_exists • is_file
 • mkdir • read file
 • scandir • write file
PHP Popular Topics
 • ajax • clone
 • comments • constants
 • cookie • database
 • defined • die
 • form validation • gd, draw images
 • global variables • header url
 • heredoc • mail
 • pass by reference • print
 • regular expr. • sessions
 • threads • xml parse
PHP Math Functions
 • abs • cos
 • exp • floor & ceil
 • fmod • log
 • max & min • pow
 • round • sin
 • sqrt • tan