我剛剛完成了在PHP中的簡單的計算器鍛鍊,使用switch語句的值,來處理4個數學運算符函數(*,/,+, - )如何計算算術表達式
我想修改我的計算器,這樣我可以輸入表達式並計算結果。這是我修改後的代碼
<html>
<head>
<meta charset="utf-8">
<title>Calculator</title>
</head>
<body>
<form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
<p>Value:<br/>
<input type="text" name="first"></p>
<button type="submit">Calculate</button>
</form>
</body>
</html>
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// collect value of input field
$a = $_REQUEST['first'];
if (empty($a)) {
echo "<br>field is empty<br><br><br><br>";
} else {
echo $a;
}
}
?>
如何計算表達式的計算進入first
表單字段?
我試圖重新施放此問題,以更好地表達自己的意圖。我希望這是有幫助的。 – holdenweb