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

search for in the

exp> <decoct
Last updated: Fri, 22 Aug 2008

view this page in

deg2rad

(PHP 4, PHP 5)

deg2rad Convierte el número en grados a su equivalente en radianes

Descripción

float deg2rad ( float $numero )

Esta función convierte a numero desde grados a su equivalente en radianes.

Lista de parámetros

numero

Valor angular en grados

Valores retornados

El equivalente en radianes de numero

Ejemplos

Example #1 Ejemplo de deg2rad()

<?php

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

?>

Ver también



add a note add a note User Contributed Notes
deg2rad
john dot navratil at sbcglobal dot net
11-Feb-2007 04: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.

exp> <decoct
Last updated: Fri, 22 Aug 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites