CakeFest 2024: The Official CakePHP Conference

tan

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

tanTangente

Descrizione

tan(float $arg): float

La funzione tan() restituisce la tangente del parametro arg. Il parametro arg deve essere espresso in radianti.

Example #1 Esempio per tan()

<?php

echo tan(M_PI_2); // 1

?>

Vedere anche: atan(), sin(), cos() e deg2rad().

add a note

User Contributed Notes

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