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

search for in the

exp> <decoct
[edit] Last updated: Fri, 30 Nov 2012

view this page in

deg2rad

(PHP 4, PHP 5)

deg2rad Przelicza stopnie na radiany

Opis

float deg2rad ( float $liczba )

deg2rad() przelicza stopnie podane w liczba na radiany.

Przykład #1 deg2rad() przykład

<?php

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

?>

Patrz także: rad2deg().



add a note add a note User Contributed Notes deg2rad - [1 notes]
up
0
christian dot ubu at NOSPAMHERE dot gmail dot com
4 years ago
Never use deg2rad() in loops, use $rad = ($deg * M_PI / 180) instead which is faster!

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