PHP atanh() 函数
PHP atanh() 函数
实例
返回不同数的反双曲正切:
<?php
echo(atanh(M_PI_4) . "<br>");
echo(atanh(0.50) . "<br>");
echo(atanh(-0.50) . "<br>");
echo(atanh(1) . "<br>");
echo(atanh(-1));
?>
echo(atanh(M_PI_4) . "<br>");
echo(atanh(0.50) . "<br>");
echo(atanh(-0.50) . "<br>");
echo(atanh(1) . "<br>");
echo(atanh(-1));
?>
运行实例 »
定义和用法
atanh() 函数返回一个数的反双曲正切。
语法
atanh(number);
参数 | 描述 |
---|---|
number | 必需。规定一个数。 |
技术细节
返回值: | number 的反双曲正切。 |
---|---|
返回类型: | Float |
PHP 版本: | 4.1+ |
PHP 更新日志: | PHP 5.3:该函数在所有平台上可用。 |
PHP Math 参考手册
相关文章
- PHP 安装
- PHP echo 和 print 语句
- PHP 包含文件 include 和 require 语句
- PHP 文件上传
- PHP Secure E-mails
- PHP 过滤器
- PHP array() 函数
- PHP array_diff_assoc() 函数
- PHP array_diff_key() 函数
- PHP array_intersect() 函数
- PHP array_slice() 函数
- PHP array_splice() 函数
- PHP array_sum() 函数
- PHP array_walk() 函数
- PHP array_walk_recursive() 函数
- PHP key() 函数
- PHP list() 函数
- PHP usort() 函数
- PHP Filter 函数
- PHP FTP 函数