PHP Doku:: Rechnet einen Winkel von Grad in Bogenmaß um - function.deg2rad.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzMathematische ErweiterungenMathematische FunktionenMathematische Funktionendeg2rad

Ein Service von Reinhard Neidl - Webprogrammierung.

Mathematische Funktionen

<<decoct

exp>>

deg2rad

(PHP 4, PHP 5)

deg2rad Rechnet einen Winkel von Grad in Bogenmaß um

Beschreibung

float deg2rad ( float $number )

Die Funktion rechnet den Wert number in Grad um in den entsprechenden Wert in Bogenmaß.

Parameter-Liste

number

Ein Winkel in Grad

Rückgabewerte

Der equivalente Wert zu number in Bogenmaß

Beispiele

Beispiel #1 deg2rad() Beispiel

<?php

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

?>

Siehe auch

  • rad2deg() - Umrechnung von Bogenmaß in Grad


2 BenutzerBeiträge:
- Beiträge aktualisieren...
christian dot ubu at NOSPAMHERE dot gmail dot com
13.03.2009 16:18
Never use deg2rad() in loops, use $rad = ($deg * M_PI / 180) instead which is faster!
john dot navratil at sbcglobal dot net
11.02.2007 16: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.



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)