downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

exp> <decoct
[edit] Last updated: Thu, 12 Jan 2012

view this page in

deg2rad

(PHP 4, PHP 5)

deg2rad Converts the number in degrees to the radian equivalent

Descrierea

float deg2rad ( float $number )

This function converts number from degrees to the radian equivalent.

Parametri

number

Angular value in degrees

Valorile întoarse

The radian equivalent of number

Exemple

Example #1 deg2rad() example

<?php

echo deg2rad(45); // 0.785398163397
var_dump(deg2rad(45) === M_PI_4); // bool(true)

?>

Vedeți de asemenea

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



add a note add a note User Contributed Notes deg2rad
christian dot ubu at NOSPAMHERE dot gmail dot com 13-Mar-2009 01:18
Never use deg2rad() in loops, use $rad = ($deg * M_PI / 180) instead which is faster!
john dot navratil at sbcglobal dot net 11-Feb-2007 12:32
This does a simple scaling with the results that deg2rad(720) is 4PI.  For navigation purposes you may wish to mod the results with 2PI.

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