当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > rad2deg() 函数
The rad2deg() function converts a radian number to its degree.
rad2deg()函数的作用是:将弧度数转换为相应的角度数。
rad2deg(radian_number) |
Parameter 参数 | Description 描述 |
---|---|
radian_number | Required. Specifies the radian number to convert 必要参数。指定需要进行转换的弧度数 |
<?php $rad = M_PI; $deg = rad2deg($rad); echo "$rad radians is equal to $deg degrees"; ?> |
The output of the code above will be:
上述代码将输出下面的结果:
3.14159265359 radians is equal to 180 degrees |