我想从一个字符串计算数学表达式。 我已阅读,解决这个是使用eval()。 但是,当我尝试运行下面的代码:
<?php
$ma ="2+10";
$p = eval($ma);
print $p;
?>
它给了我下面的错误:
解析错误:语法错误,意想不到的$端在C:\ XAMPP \ htdocs中\ eclipseWorkspaceWebDev \ MandatoryHandinSite \ tester.php(4):EVAL()'在第1行代码d
是否有人知道解决这个问题。
我想从一个字符串计算数学表达式。 我已阅读,解决这个是使用eval()。 但是,当我尝试运行下面的代码:
<?php
$ma ="2+10";
$p = eval($ma);
print $p;
?>
它给了我下面的错误:
解析错误:语法错误,意想不到的$端在C:\ XAMPP \ htdocs中\ eclipseWorkspaceWebDev \ MandatoryHandinSite \ tester.php(4):EVAL()'在第1行代码d
是否有人知道解决这个问题。
虽然我不建议使用eval
这个(这是不是解决),问题是, eval
预计代码的完整生产线,不只是片段。
$ma ="2+10";
$p = eval('return '.$ma.';');
print $p;
如果你想要做什么。
一个更好的解决办法是写你的数学表达的标记生成器/分析器。 这里是一个非常简单的基于正则表达式,一个给你举个例子:
$ma = "2+10";
if(preg_match('/(\d+)(?:\s*)([\+\-\*\/])(?:\s*)(\d+)/', $ma, $matches) !== FALSE){
$operator = $matches[2];
switch($operator){
case '+':
$p = $matches[1] + $matches[3];
break;
case '-':
$p = $matches[1] - $matches[3];
break;
case '*':
$p = $matches[1] * $matches[3];
break;
case '/':
$p = $matches[1] / $matches[3];
break;
}
echo $p;
}
看看这个..
我用这个会计系统中,你可以写在量输入栏的数学表达式..
$Cal = new Field_calculate();
$result = $Cal->calculate('5+7'); // 12
$result = $Cal->calculate('(5+9)*5'); // 70
$result = $Cal->calculate('(10.2+0.5*(2-0.4))*2+(2.1*4)'); // 30.4
class Field_calculate {
const PATTERN = '/(?:\-?\d+(?:\.?\d+)?[\+\-\*\/])+\-?\d+(?:\.?\d+)?/';
const PARENTHESIS_DEPTH = 10;
public function calculate($input){
if(strpos($input, '+') != null || strpos($input, '-') != null || strpos($input, '/') != null || strpos($input, '*') != null){
// Remove white spaces and invalid math chars
$input = str_replace(',', '.', $input);
$input = preg_replace('[^0-9\.\+\-\*\/\(\)]', '', $input);
// Calculate each of the parenthesis from the top
$i = 0;
while(strpos($input, '(') || strpos($input, ')')){
$input = preg_replace_callback('/\(([^\(\)]+)\)/', 'self::callback', $input);
$i++;
if($i > self::PARENTHESIS_DEPTH){
break;
}
}
// Calculate the result
if(preg_match(self::PATTERN, $input, $match)){
return $this->compute($match[0]);
}
// To handle the special case of expressions surrounded by global parenthesis like "(1+1)"
if(is_numeric($input)){
return $input;
}
return 0;
}
return $input;
}
private function compute($input){
$compute = create_function('', 'return '.$input.';');
return 0 + $compute();
}
private function callback($input){
if(is_numeric($input[1])){
return $input[1];
}
elseif(preg_match(self::PATTERN, $input[1], $match)){
return $this->compute($match[0]);
}
return 0;
}
}
使用的eval函数是非常危险的,当你无法控制的字符串参数。
尝试MATEX安全数学公式计算。
我最近建立了一个PHP包,提供了一个math_eval
辅助功能。 这不正是你所需要的,而无需使用可能不安全eval
函数。
你只是通过在数学表达式的字符串版本,并返回结果。
$two = math_eval('1 + 1');
$three = math_eval('5 - 2');
$ten = math_eval('2 * 5');
$four = math_eval('8 / 2');
您也可以通过在变量中,如果需要的话将被取代。
$ten = math_eval('a + b', ['a' => 7, 'b' => 3]);
$fifteen = math_eval('x * y', ['x' => 3, 'y' => 5]);
链接: https://github.com/langleyfoxall/math_eval
eval
评估给出的代码PHP
。 这意味着它会执行给定的paremeter作为PHP代码段。
要纠正你的代码,这样使用:
$ma ="print (2+10);";
eval($ma);
解决了!
<?php
function evalmath($equation)
{
$result = 0;
// sanitize imput
$equation = preg_replace("/[^a-z0-9+\-.*\/()%]/","",$equation);
// convert alphabet to $variabel
$equation = preg_replace("/([a-z])+/i", "\$$0", $equation);
// convert percentages to decimal
$equation = preg_replace("/([+-])([0-9]{1})(%)/","*(1\$1.0\$2)",$equation);
$equation = preg_replace("/([+-])([0-9]+)(%)/","*(1\$1.\$2)",$equation);
$equation = preg_replace("/([0-9]{1})(%)/",".0\$1",$equation);
$equation = preg_replace("/([0-9]+)(%)/",".\$1",$equation);
if ( $equation != "" ){
$result = @eval("return " . $equation . ";" );
}
if ($result == null) {
throw new Exception("Unable to calculate equation");
}
echo $result;
// return $equation;
}
$a = 2;
$b = 3;
$c = 5;
$f1 = "a*b+c";
$f1 = str_replace("a", $a, $f1);
$f1 = str_replace("b", $b, $f1);
$f1 = str_replace("c", $c, $f1);
evalmath($f1);
/*if ( $equation != "" ){
$result = @eval("return " . $equation . ";" );
}
if ($result == null) {
throw new Exception("Unable to calculate equation");
}
echo $result;*/
?>
这种方法有两个主要缺点:
安全性,PHP脚本是由eval函数进行评估。 这是不好的,尤其是当用户要注入恶意代码。
复杂
我创造了这个,检查出来: 公式解析
首先,创建的实例FormulaInterpreter
与式和它的参数
$formulaInterpreter = new FormulaInterpreter("x + y", ["x" => 10, "y" => 20]);
使用execute()
方法来解释的公式。 它会返回结果:
echo $formulaInterpreter->execute();
在单行
echo (new FormulaInterpreter("x + y", ["x" => 10, "y" => 20]))->execute();
# Formula: speed = distance / time
$speed = (new FormulaInterpreter("distance/time", ["distance" => 338, "time" => 5]))->execute() ;
echo $speed;
#Venezuela night overtime (ordinary_work_day in hours): (normal_salary * days_in_a_work_month)/ordinary_work_day
$parameters = ["normal_salary" => 21000, "days_in_a_work_month" => 30, "ordinary_work_day" => 8];
$venezuelaLOTTTArt118NightOvertime = (new FormulaInterpreter("(normal_salary/days_in_a_work_month)/ordinary_work_day", $parameters))->execute();
echo $venezuelaLOTTTArt118NightOvertime;
#cicle area
$cicleArea = (new FormulaInterpreter("3.1416*(radio*radio)", ["radio" => 10]))->execute();
echo $cicleArea;
使用eval函数
protected function getStringArthmeticOperation($value, $deduct)
{
if($value > 0){
$operator = '-';
}else{
$operator = '+';
}
$mathStr = '$value $operator $deduct';
eval("\$mathStr = \"$mathStr\";");
$userAvailableUl = eval('return '.$mathStr.';');
return $userAvailableUl;
}
$this->getStringArthmeticOperation(3, 1); //2
一个eval'd表达应与“;”结尾
试试这个 :
$ma ="2+10;";
$p = eval($ma);
print $p;
顺便说一句,这是超出范围,但“EVAL”功能将不会返回表达式的值。 的eval( '2 + 10')将不会返回12.如果你想让它回到12,你应该的eval( '返回2 + 10;');