(PHP 4, PHP 5, PHP 7, PHP 8)
deg2rad — Converts the number in degrees to the radian equivalent
deg2rad(float $num): float
This function converts num from degrees to the radian equivalent.
numAngular value in degrees
The radian equivalent of num
Example #1 deg2rad() example
<?php echo deg2rad(45), PHP_EOL; // 0.785398163397 var_dump(deg2rad(45) === M_PI_4); // bool(true) ?>
© 1997–2025 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/function.deg2rad.php