我是一般的PHP新手。我一直在搞這個代碼,直到我想在一個集合中執行這個函數,而不必設置和添加sub,div,mult函數。我該如何着手設置兩個數字集的變量運算符?給操作員設置一個變量然後執行它
示例僞代碼:
<?php
$Num1 = 10;
$Num2 = 5;
$operation = /;
$Sum = $Num1 $operation $Num2;
return $Sum;
或者類似的東西:
<?php
// creating Class "Math"
class math {
//Executing the function
function exec($info = array()) {
return $info['num1'] $info['operation'] $info['num2'];
}
}
// Set info
$info = array(
'num1' => 10,
'num2' => 5,
'operation' => '/'
);
//execute the OOP
$math = new math;
echo $math->exec($info);
你不能...使用開關或功能。 – Zerquix18