当我们知道底垂和斜边时,在php中找到角度?
我正在用 PHP 做一个项目,需要我做一些计算,但我无法想象在知道底垂和斜边时如何找出角度
这是:
AB = 3000 = BASE
BC = 1000 = PERPENDICULAR
AC = 由我在 php 脚本中找到,如下所示
但这是我需要找出 AB 到 AC 或 A° 之间的角度
在 PHP 中查找HYPOTENUSE的脚本如下
<?php
if(isset($_GET['f']) and ($_GET['t'])){
$fr = $_GET['f'];
$to = $_GET['t'];
$xf = explode(', ',$fr);
$xt = explode(', ',$to);
$ans1 = $xf[0]-$xt[0];
$ans2 = $xf[1]-$xt[1];
$ans3 = $ans1*$ans1;
$ans4 = $ans2*$ans2;
$ans5 = (sqrt($ans3+$ans4))*111.2;
} else {
$fr = $to = $ans5 = "";
}
?>
<form action="" method="GET">
From:<br>
<input type="text" name="f" value="<?php echo $fr; ?>"></input>
<p></p>
To:<br>
<input type="text" name="t" value="<?php echo $to; ?>"></input>
<p></p>
<button type="submit">CALCULATE</button>
</form>
<hr>
<div>
<?php
echo 'Distance: <strong>'.round($ans5*1000, 2).'</strong> meter(s)';
echo ' or <strong>'.round(($ans5), 3).'</strong> kilometer(s)<br>';
echo 'Distance: <strong>'.round(($ans5*0.621371), 3).'</strong> Mile(s)<br>';
echo 'Distance: <strong>'.round(($ans5*1000*3.28084), 2).'</strong> Foot';?>
</div>
<hr>