PHP acosh()
La fonction acosh() est une fonction intégrée en PHP qui renvoie le cosinus hyperbolique inverse d’un nombre.
Syntaxe
acosh(nbr)
Paramètres
- nbr(Obligatoire) : Spécifie un nombre.
Valeur de retour
La fonction renvoie le cosinus hyperbolique inverse du nombre.
Version PHP:
4.1+
Exemple :
<?php echo(acosh(3)); // 1.7627471740391 echo(acosh(4.2)); // 2.1137482309235 echo(acosh(100)); // 5.2982923656105 ?>