0

当我们知道底垂和斜边时,在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>
4

1 回答 1

1

您可以使用我制作的类似方法来计算将文本从左下角到右上角的图像的角度。

$image_hypotenuse = hypot($image_width, $image_height);
$a = $image_hypotenuse;
$b = $image_height;
$c = $image_width;
$a2 = $a * $a;
$b2 = $b * $b;
$c2 = $c * $c;
$alpha = rad2deg(acos(($b2 + $c2 - $a2) / (2 * $b * $c)));
$beta = rad2deg(acos(($a2 + $c2 - $b2) / (2 * $a * $c)));
$gamma = rad2deg(acos(($a2 + $b2 - $c2) / (2 * $a * $b)));
$text_angle = ceil($beta);
于 2019-10-04T15:40:04.670 回答