PHP hypot() 函数 PHP hexdec() 函数 PHP is_finite() 函数 PHP hypot() 函数 实例 计算不同的直角三角形的斜边长度: <?php echo hypot(3,4) . "<br>"; echo hypot(4,6) . "<br>"; echo hypot(1,3) . "<br>"; echo sqrt(3*3+4*4); ?> 定义和用法 hypot() 函数计算直角三角形的斜边长度。 提示: 该函数等同于 sqrt(xx + yy)。 语法 hypot( _x,y_ ); 参数 描述 _x_ 必需。规定第一条直角边的长度。 _y_ 必需。规定第二条直角边的长度。 技术细节 返回值: 斜边的长度。 返回类型: Float PHP 版本: 4.1+ PHP hexdec() 函数 PHP is_finite() 函数