Converts the number in degrees to the radian equivalent
$num
This function converts num from degrees to the radian equivalent.
num
Angular value in degrees
The radian equivalent of num
Example #1 deg2rad example
<?php echo deg2rad(45); // 0.785398163397 var_dump(deg2rad(45) === M_PI_4); // bool(true) ?>