Friday, October 17, 2025
HomeLanguagesPHP asin( ) Function

PHP asin( ) Function

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. One of such function is asin() function. The asin() function in PHP is used to find the arc sine of a number in radians.
We already have discussed about PHP | sin() Function. The asin() function is the complementary function of sin().
The parameter passed in the asin() function should specify a number in the range -1 to 1.

Syntax:

float asin($value)

Parameters: This function accepts a single parameter $value. It is the number whose arc 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 arc sine value of number passed to it as argument.

Examples:

Input : asin(0)
Output : 0

Input : asin(1)
Output : 1.5707963267949

Input : asin(-1)
Output : -1.5707963267949

Input : asin(2)
Output : NaN

Below programs illustrate asin() function in PHP:

  • Passing 0 as a parameter:




    <?php
      
    echo (asin(0));
      
    ?>      

    
    

    Output:

    0
  • Passing 1 as a parameter:




    <?php
      
    echo (asin(1));
      
    ?>      

    
    

    Output:

    1.5707963267949
  • Passing -1 as a parameter:




    <?php
      
    echo (asin(-1));
      
    ?>      

    
    

    Output:

    -1.5707963267949
  • Passing 2 as a parameter:




    <?php
      
    echo (asin(2));
      
    ?>      

    
    

    Output:

    NaN

Reference:
http://php.net/manual/en/function.asin.php

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS