The Server Pages
:: TSP Menu
- Home
- Authors
- Glossary
- RSS Feed

:: Servers
- CPanel
- Hosting
- Linux
- Windows

:: Webmaster
- Databases
- Design
- PHP
- Search Engines

:: Scripts
- Scripts

:: Documentation
- PHP Manual

:: Other
- Errors & Solutions
- TechPunt
- Wojjie

search for in the

rand> <pow
[edit] Last updated: Sat, 12 May 2012

view this page in

rad2deg

(PHP 4, PHP 5)

rad2deg Converts the radian number to the equivalent number in degrees

Description

float rad2deg ( float $number )

This function converts number from radian to degrees.

Parameters

number

A radian value

Return Values

The equivalent of number in degrees

Examples

Example #1 rad2deg() example

<?php

echo rad2deg(M_PI_4); // 45

?>

See Also

  • deg2rad() - Converts the number in degrees to the radian equivalent



add a note add a note User Contributed Notes rad2deg
money1109 at gmail dot com 14-May-2008 10:59
Conversion between grads and degrees

function gon2deg($gon) {
    return ($gon / 400) * 360;
}

function deg2gon($deg) {
    return ($deg / 360) * 400;
}
15-Dec-2004 04:22
Definition

<?
function rad2deg($arg) {
 return
$arg*180/pi();
}
?>

 
show source | credits | sitemap | contact | advertising | mirror sites