PHP tan() Function
In this chapter you will learn:
- Definition for PHP tan() Function
- Syntax for PHP tan() Function
- Parameter for PHP tan() Function
- Return for PHP tan() Function
- Example - Return the tangent of different numbers
Definition
Calculates the tangent value of the number provided as its only parameter.
Syntax
PHP tan() Function has the following syntax.
float tan ( float num )
Parameter
Parameter | Description |
---|---|
number | Required. Specifies a value in radians |
The parameter should be passed as radians. We should use deg2rad() to convert degrees to radians.
Return
Item | Value |
---|---|
Return Value | The tangent of number |
Return Type | Float |
Example
Return the tangent of different numbers
<?php/*j a v a2 s. co m*/
$tan1 = tan(10);
print($tan1);
print "\n";
$tan2 = tan(deg2rad(80));
print($tan2);
print "\n";
echo(tan(M_PI_4) . "\n");
echo(tan(0.50) . "\n");
echo(tan(-0.50) . "\n");
echo(tan(5) . "\n");
echo(tan(1) . "\n");
echo(tan(-5) . "\n");
echo(tan(-1));
?>
The code above generates the following result.
Next chapter...
What you will learn in the next chapter:
- Definition for PHP tanh() Function
- Syntax for PHP tanh() Function
- Parameter for PHP tanh() Function
- Return for PHP tanh() Function
- Example - Return the hyperbolic tangent of different numbers
Home » PHP Tutorial » PHP Math Functions