使用 PHP 將攝氏度轉換為華氏度

Kevin Amayi 2023年1月30日
PHP
  1. 使用 PHP 變數和表示式將攝氏溫度轉換為華氏溫度
  2. 使用 PHP 函式將攝氏度轉換為華氏度
使用 PHP 將攝氏度轉換為華氏度

我們將瞭解如何使用 PHP 使用 variablesexpressions 將攝氏溫度轉換為華氏溫度; 你將需要一個檔案,將其儲存為 test.php 並儲存程式碼。

你還需要從安裝了 PHP 的 Apache 之類的伺服器執行此程式碼。

使用 PHP 變數和表示式將攝氏溫度轉換為華氏溫度

<!DOCTYPE html>
<html>
<body>
<?php
    echo "<table><tr><th>Celcius</th><th>Fahrenheit<th></tr>";
    for($celcius = 0; $celcius <= 50; $celcius+=5) {
        
        $farenheit = ($celcius * 9/5) + 32;
        
        echo "<tr><td>$celcius</td><td>$farenheit</td></tr>";
    }
    echo "</table>";
?>
</body>
</html>

輸出:

    Celcius	Fahrenheit	
        0	32
        5	41
        10	50
        15	59
        20	68
        25	77
        30	86
        35	95
        40	104
        45	113
        50	122

使用 PHP 函式將攝氏度轉換為華氏度

<!DOCTYPE html>
<html>
<body>
<?php
    function calculcateFarenheit(int $celsius)
    {
        return ($celsius * 9/5) + 32;
    }

    echo "<table><tr><th>Celcius</th><th>Fahrenheit<th></tr>";
    for($celcius = 0; $celcius <= 50; $celcius+=5) {
        echo sprintf("<tr><td>%d</td><td>%d</td></tr>", $celcius, calculcateFarenheit($celcius));
    }
    echo "</table>";

?>
</body>
</html>

輸出:

    Celcius	Fahrenheit	
        0	32
        5	41
        10	50
        15	59
        20	68
        25	77
        30	86
        35	95
        40	104
        45	113
        50	122