PHP hypot() 函数
PHP hypot() 函数
PHP Math 参考手册
实例
计算不同的直角三角形的斜边长度:
<?php
echo hypot(3,4) . "<br>";
echo hypot(4,6) . "<br>";
echo hypot(1,3) . "<br>";
echo sqrt(3*3+4*4);
?>
定义和用法
hypot() 函数计算直角三角形的斜边长度。
提示:
该函数等同于 sqrt(x*x + y*y)。
语法
hypot(
x,y
);
参数
描述
x
必需。规定第一条直角边的长度。
y
必需。规定第二条直角边的长度。
技术细节
返回值:
斜边的长度。
返回类型:
Float
PHP 版本:
4.1+
PHP Math 参考手册
目录
PHP 正则表达式(PCRE)
PHP 图像处理
PHP 5 Array 函数
PHP 5 Calendar 函数
PHP cURL 函数
PHP 5 Date/Time 函数
PHP 5 Directory 函数
PHP Error 和 Logging 函数
PHP 5 Filesystem 函数
PHP Filter 函数
PHP FTP 函数
PHP HTTP 函数
PHP Libxml 函数
PHP Mail 函数
PHP 5 Math 函数
PHP 杂项 函数
PHP 5 MySQLi 函数
PHP 5 SimpleXML 函数
PHP lcfirst() 函数
PHP 5 String 函数
PHP XML Parser 函数
PHP Zip File 函数
PHP 5 时区