PHP tan( ) Function Last Updated : 22 Jun, 2023 Comments Improve Suggest changes Like Article Like Report Trigonometry is an important part of mathematics and PHP’s math functions provides us with some functions which are very useful for calculations involving trigonometry.The tan() function in PHP is used to find the tangent of the argument parameter. The argument parameter must be in radians. Syntax: float tan($value) Parameters: This function accepts a single parameter $value. It is the number whose tangent 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 tangent value of number passed to it as argument. Examples: Input : tan(0.50) Output : 0.54630248984379 Input : tan(-0.50) Output : -0.54630248984379 Input : tan(5) Output : -3.3805150062466 Input : tan(M_PI_4) Output : 1 Below programs illustrate tan() in PHP: Passing 0.50 as a parameter: PHP <?php echo (tan(0.50)); ?> Output: 0.54630248984379 Passing -0.50 as a parameter: PHP <?php echo (tan(-0.50)); ?> Output: -0.54630248984379 Passing 5 as a parameter: html <?php echo (tan(5)); ?> Output: -3.3805150062466 When (M_PI_4) is passed as a parameter, M_PI_4 is a constant in PHP whose value is 0.78539816339744830962: PHP <?php echo (tan(M_PI_4)); ?> Output: 1 Reference: http://php.net/manual/en/function.tan.php Comment More infoAdvertise with us Next Article PHP tan( ) Function S Shubrodeep Banerjee Follow Improve Article Tags : Misc Web Technologies PHP PHP-math PHP-function +1 More Practice Tags : Misc Similar Reads PHP rand() Function In this article, we will see how to get the random number using the rand() function in PHP, along with knowing its implementation through the example. The rand() is an inbuilt function in PHP used to generate a random number ie., it can generate a random integer value in the range [min, max]. Syntax 2 min read PHP range() Function The range() function is an inbuilt function in PHP which is used to create an array of elements of any kind such as integer, alphabets within a given range(from low to high) i.e, list's first element is considered as low and last one is considered as high. Syntax: array range(low, high, step) Parame 3 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 strval() Function The PHP strval() function converts a given variable to a string. It takes a scalar variable (like integers, floats, and booleans) and converts it to its string representation. For arrays, objects, and resources, it does not work and may produce unexpected results.Syntaxstrval( $variable ) Parameter: 3 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 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 | Functions A function in PHP is a self-contained block of code that performs a specific task. It can accept inputs (parameters), execute a set of statements, and optionally return a value. PHP functions allow code reusability by encapsulating a block of code to perform specific tasks.Functions can accept param 8 min read PHP reset() Function The reset() function is an inbuilt function in PHP. This function is used to move any array's internal pointer to the first element of that array. While working with arrays, it may happen that we modify the internal pointer of an array using different functions like prev() function, current() functi 2 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 Like