array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'en', ), 'this' => array ( 0 => 'function.deg2rad.php', 1 => 'deg2rad', 2 => 'Converts the number in degrees to the radian equivalent', ), 'up' => array ( 0 => 'ref.math.php', 1 => 'Math Functions', ), 'prev' => array ( 0 => 'function.decoct.php', 1 => 'decoct', ), 'next' => array ( 0 => 'function.exp.php', 1 => 'exp', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/math/functions/deg2rad.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

deg2rad

(PHP 4, PHP 5, PHP 7, PHP 8)

deg2rad Converts the number in degrees to the radian equivalent

Description

deg2rad(float $num): float

This function converts num from degrees to the radian equivalent.

Parameters

num

Angular value in degrees

Return Values

The radian equivalent of num

Examples

Example #1 deg2rad() example

<?php

echo deg2rad(45), PHP_EOL; // 0.785398163397
var_dump(deg2rad(45) === M_PI_4); // bool(true)

?>

See Also