CakeFest 2024: The Official CakePHP Conference

sin

(PHP 4, PHP 5, PHP 7, PHP 8)

sinSinus

Beschreibung

sin(float $num): float

sin() berechnet den Sinus des Winkels num. Der Parameter num ist im Bogenmaß.

Parameter-Liste

num

Ein Winkel in Bogenmaß.

Rückgabewerte

Der Sinus von num.

Beispiele

Beispiel #1 sin()-Beispiel

<?php

// Die Stellenzahl des Ergebnisses hängt von der 'precision'-Einstellung ab
echo sin(deg2rad(60)); // 0.866025403 ...
echo sin(60); // -0.304810621 ...

?>

Siehe auch

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top