

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
sinh() function in PHP
The sinh() function Returns the hyperbolic sine of a number equivalent to.
(exp(num) - exp(-num))/2)
Syntax
sinh(num)
Parameters
num − The number for which you want to Return the hyperbolic sine. A value in radians.
Return
The sinh() function Returns the hyperbolic sine of a number.
Example
<?php echo(sinh(0) . "<br>"); echo(sinh(1) ); ?>
Output
0<br>1.1752011936438
Example
Let us see another example −
<?php echo(sinh(M_PI) . "<br>"); echo(sinh(M_PI_2)); ?>
Output
11.548739357258<br>2.3012989023073
- Related Questions & Answers
- PHP sinh() Function
- sinh() function in C++ STL
- Sinh( ) function for complex number in C++
- file_exists() function in PHP
- basename( ) function in PHP
- chgrp()function in PHP
- chmod() function in PHP
- chown() function in PHP
- clearstatcache() function in PHP
- copy() function in PHP
- delete() function in PHP
- dirname()function in PHP
- disk_free_space() function in PHP
- disk_total_space() function in PHP
- diskfreespace() function in PHP
Advertisements