Math 函数
在线手册:中文 英文
PHP手册

tan

(PHP 4, PHP 5)

tan正切

说明

float tan ( float $arg )

tan() 返回参数 arg 的正切值。参数 arg 的单位为弧度。

Example #1 tan()

<?php

echo tan(M_PI_4); // 1

?>

参见: atan()sin()cos()deg2rad()


Math 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: 正切

用户评论:

georgedot at gmail dot com (10-Sep-2009 09:50)

Workaround for cotangent function

<?php
//FOR PHP 4
function cot($rad)
{
    return
tan(M_PI_2 - rad2deg($rad));
}

//FOR PHP 3
function cot($rad)
{
    return
tan(M_PI/2 - rad2deg($rad));
}
?>

fformula at gmail dot com (10-Apr-2006 01:26)

To find cotangent you can use
  tan (M_PI/2 - $alfa)