Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Degrees / Radians conversions in PHP

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 116
    Comment on it

    To convert degree to radians and radians to degree following function are used:

    <?php 
    //degrees to radians function 
    function DegToRad($degrees) 
    { 
    return $degrees * 3.14 / 180; 
    } 
    //radians to degrees conversion 
    function RadToDeg($radians) 
    { 
    return $radians * 180 / 3.14; 
    } 
    ?> 
    

    Let's have a example to test the above function:

    <?php 
    //calling the function to convert degree to radians
    echo DegToRad(90); 
    echo "<br>"; 
    //calling the function to convert radians to degree
    echo RadToDeg(0.707); 
    ?>
    

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: