亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

PHP tanh() 函數(shù)

定義和用法

tanh() 函數(shù)返回雙曲正切。

語(yǔ)法

tanh(x)
參數(shù) 描述
x 必需。一個(gè)數(shù)。

說(shuō)明

返回 x 的雙曲正切值,定義為 sinh(arg)/cosh(arg)。

例子

在本例中,我們將返回不同的數(shù)的雙曲正切:

<?php
echo(tanh(M_PI_4));
echo(tanh(0.50));
echo(tanh(-0.50));
echo(tanh(5));
echo(tanh(10));
echo(tanh(-5));
echo(tanh(-10))
?>

輸出:

0.655794202633
0.46211715726
-0.46211715726
0.999909204263
0.999999995878
-0.999909204263
-0.999999995878