PHP sinh( ) Function Last Updated : 22 Jun, 2023 Comments Improve Suggest changes Like Article Like Report The sinh() function is a builtin function in PHP and is used to find the hyperbolic sine of an angle. The hyperbolic sine of any argument arg is defined as, (exp(arg) - exp(-arg))/2 Where, exp() is the exponential function and returns e raised to the power of argument passed to it. For example exp(2) = e^2. Syntax: float sinh($value) Parameters: This function accepts a single parameter $value. It is the number whose hyperbolic sine value you want to find. The value of this parameter must be in radians. Return Value: It returns a floating point number which is the hyperbolic sine value of number passed to it as argument. Examples: Input : sinh(3) Output : 10.01787492741 Input : sinh(-3) Output : -10.01787492741 Input : sinh(M_PI) Output : 11.548739357258 Input : sinh(0) Output : 0 Below programs taking different values of $value are used to illustrate the sinh() function in PHP: Passing 3 as a parameter: PHP <?php echo (sinh(3)); ?> Output: 10.01787492741 Passing -3 as a parameter: PHP <?php echo (sinh(-3)); ?> Output: -10.01787492741 When (M_PI) is passed as a parameter, M_PI is a constant in PHP whose value is 3.1415926535898: PHP <?php echo (sinh(M_PI)); ?> Output: 11.548739357258 Passing 0 as a parameter: PHP <?php echo (sinh(0)); ?> Output: 0 Reference: http://php.net/manual/en/function.sinh.php Comment More infoAdvertise with us Next Article PHP sinh( ) Function S Shubrodeep Banerjee Follow Improve Article Tags : Misc Web Technologies PHP PHP-math PHP-function +1 More Practice Tags : Misc Similar Reads PHP String Functions Strings are a fundamental data type in PHP, used to store and manipulate text. PHP provides a wide variety of built-in string functions. These functions perform various operations such as string transformations, character manipulations, encoding and decoding, and formatting, making string handling s 6 min read PHP pos() Function The pos() is an inbuilt function in PHP which is used to return the value of the element in an array which the internal pointer is currently pointing to. The pos() function does not increment or decrement the internal pointer after returning the value. In PHP all arrays have an internal pointer. Thi 2 min read PHP strlen() Function The strlen() is a built-in function in PHP which returns the length of a given string.It calculates the length of the string including all the whitespaces and special characters. Syntax:strlen($string);Parameters: This parameter represents the string whose length is needed to be returned. Return Val 1 min read PHP | time() Function The time() function is a built-in function in PHP which returns the current time measured in the number of seconds since the Unix Epoch. The number of seconds can be converted to the current date using date() function in PHP. Syntax: int time() Parameter: This function does not accepts any parameter 2 min read PHP trim() Function The trim() function in PHP is an inbuilt function which removes whitespaces and also the predefined characters from both sides of a string that is left and right. Related Functions: PHP | ltrim() Function PHP | rtrim() Function Syntax: trim($string, $charlist) Parameters:The function accepts one man 2 min read Like