rad2deg
(PHP 4, PHP 5)
rad2deg — Converts the radian number to the equivalent number in degrees
Описание
float rad2deg
( float $number
)
This function converts number from radian to degrees.
Список параметров
- number
-
A radian value
Возвращаемые значения
The equivalent of number in degrees
Примеры
Пример #1 rad2deg() example
<?php
echo rad2deg(M_PI_4); // 45
?>
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Математические расширения
- Математические функции
- abs
- acos
- acosh
- asin
- asinh
- atan2
- atan
- atanh
- base_convert
- bindec
- ceil
- cos
- cosh
- decbin
- dechex
- decoct
- deg2rad
- exp
- expm1
- floor
- fmod
- getrandmax
- hexdec
- hypot
- intdiv
- is_finite
- is_infinite
- is_nan
- lcg_value
- log10
- log1p
- log
- max
- min
- mt_getrandmax
- mt_rand
- mt_srand
- octdec
- pi
- pow
- rad2deg
- rand
- round
- sin
- sinh
- sqrt
- srand
- tan
- tanh
Коментарии
Definition
<?
function rad2deg($arg) {
return $arg*180/pi();
}
?>
Conversion between grads and degrees
function gon2deg($gon) {
return ($gon / 400) * 360;
}
function deg2gon($deg) {
return ($deg / 360) * 400;
}