(PHP 4, PHP 5)
tan — Tangent
$arg
    )
   tan() returns the tangent of the arg
   parameter.  The arg parameter is in radians.
  
argThe argument to process in radians
   The tangent of arg
  
Example #1 tan() example
<?php
echo tan(M_PI_4); // 1
?>