28

I was just wondering if PHP has a function that can take a string like 2-1 and produce the arithmetic result of it?

Or will I have to do this manually with explode() to get the values left and right of the arithmetic operator?

mickmackusa
  • 43,625
  • 12
  • 83
  • 136
Nikola
  • 14,888
  • 21
  • 101
  • 165

9 Answers9

53

I know this question is old, but I came across it last night while searching for something that wasn't quite related, and every single answer here is bad. Not just bad, very bad. The examples I give here will be from a class that I created back in 2005 and spent the past few hours updating for PHP5 because of this question. Other systems do exist, and were around before this question was posted, so it baffles me why every answer here tells you to use eval, when the caution from PHP is:

The eval() language construct is very dangerous because it allows execution of arbitrary PHP code. Its use thus is discouraged. If you have carefully verified that there is no other option than to use this construct, pay special attention not to pass any user provided data into it without properly validating it beforehand.

Before I jump in to the example, the places to get the class I will be using is on either PHPClasses or GitHub. Both the eos.class.php and stack.class.php are required, but can be combined in to the same file.

The reason for using a class like this is that it includes and infix to postfix(RPN) parser, and then an RPN Solver. With these, you never have to use the eval function and open your system up to vulnerabilities. Once you have the classes, the following code is all that is needed to solve a simple (to more complex) equation such as your 2-1 example.

require_once "eos.class.php";
$equation = "2-1";
$eq = new eqEOS();
$result = $eq->solveIF($equation);

That's it! You can use a parser like this for most equations, however complicated and nested without ever having to resort to the 'evil eval'.

Because I really don't want this only only to have my class in it, here are some other options. I am just familiar with my own since I've been using it for 8 years. ^^

Wolfram|Alpha API
Sage
A fairly bad parser
phpdicecalc

Not quite sure what happened to others that I had found previously - came across another one on GitHub before as well, unfortunately I didn't bookmark it, but it was related to large float operations that included a parser as well.

Anyways, I wanted to make sure an answer to solving equations in PHP on here wasn't pointing all future searchers to eval as this was at the top of a google search. ^^

Jon
  • 4,746
  • 2
  • 24
  • 37
  • Thx for an elaborated answer, I marked your answer as correct now as you're right the eval shouldn't be used, but at the time I was just looking for a quick solution. – Nikola Apr 18 '13 at 05:27
  • Haha, understandable. =] And thanks. I didn't know if you still visited the question or anything, just wanted a `non-eval` answer thrown in with the pack ^^ And you are welcome! Hopefully it was useful. =] – Jon Apr 18 '13 at 16:53
  • I get a notification if anyone posts an answer or comment on a question which I posted, so I took a look immediately. Yeah, it's good point - thx! – Nikola Apr 18 '13 at 17:00
  • In the event that the math string contains a `$variable`, is there anyway to make these variables available to the parser? Perhaps as a second parameter (an array of indexed values)? I am going to look at your code to see if I can not find a way to do this. – Mike Jan 06 '15 at 23:44
  • @MichaelJMulligan Variable stored within your code, yes, if you pass the value you the parser. Look at the (GitHub([https://github.com/jlawrence11/Classes] README.md for more information. ^^ – Jon Jan 07 '15 at 07:15
  • Yeah, I just saw that. I also forked for namespacing and composer integration. You have a Pull Request we can talk on (I have another idea as well). – Mike Jan 07 '15 at 15:42
  • (1-2)(3-4) is evaluated as -7. If i add an explicit * in there, (1-2)*(3-4) then it works fine. i am getting those little errors here and there – CarCar Nov 15 '16 at 21:31
  • @CarCar Sorry, I am just seeing this, are you using the newest version? Or the version linked in the post? ^^ – Jon Nov 27 '16 at 08:59
  • Perfect solution. Works great transforming strings into math equations. – tmarois Feb 23 '17 at 15:15
14
$operation='2-1';
eval("\$value = \"$operation\";");

or

$value=eval("return ($operation);");
AbraCadaver
  • 78,200
  • 7
  • 66
  • 87
dynamic
  • 46,985
  • 55
  • 154
  • 231
  • 3
    The eval() language construct is very dangerous because it allows execution of arbitrary PHP code. Its use thus is discouraged. If you have carefully verified that there is no other option than to use this construct, pay special attention not to pass any user provided data into it without properly validating it beforehand. – MERT DOĞAN Oct 12 '16 at 08:56
8

This is one of the cases where eval comes in handy:

$expression = '2 - 1';
eval( '$result = (' . $expression . ');' );
echo $result;
gion_13
  • 41,171
  • 10
  • 96
  • 108
7

You can use BC Math arbitrary precision

echo bcsub(5, 4); // 1
echo bcsub(1.234, 5); // 3
echo bcsub(1.234, 5, 4); // -3.7660

http://www.php.net/manual/en/function.bcsub.php

delphist
  • 4,409
  • 1
  • 22
  • 22
3

In this forum someone made it without eval. Maybe you can try it? Credits to them, I just found it.

function calculate_string( $mathString )    {
    $mathString = trim($mathString);     // trim white spaces
    $mathString = ereg_replace ('[^0-9\+-\*\/\(\) ]', '', $mathString);    // remove any non-numbers chars; exception for math operators

    $compute = create_function("", "return (" . $mathString . ");" );
    return 0 + $compute();
}

$string = " (1 + 1) * (2 + 2)";
echo calculate_string($string);  // outputs 8  
Nisse Engström
  • 4,738
  • 23
  • 27
  • 42
AmirG
  • 615
  • 8
  • 18
  • 5
    Caution Create_function: `This function internally performs an eval() and as such has the same security issues as eval(). Additionally it has bad performance and memory usage characteristics. If you are using PHP 5.3.0 or newer a native anonymous function should be used instead.` – DrunkWolf Nov 17 '15 at 12:35
  • If you're removing every character excluding a very select filter of `0-9`, and `+, -, /, *`, is there really much of a security concern when using `eval`? – Nathan F. May 18 '19 at 04:42
2

Also see this answer here: Evaluating a string of simple mathematical expressions

Please note this solution does NOT conform to BODMAS, but you can use brackets in your evaluation string to overcome this.

function callback1($m) {
    return string_to_math($m[1]);
}
function callback2($n,$m) {
    $o=$m[0];
    $m[0]=' ';
    return $o=='+' ? $n+$m : ($o=='-' ? $n-$m : ($o=='*' ? $n*$m : $n/$m));
}
function string_to_math($s){ 
    while ($s != ($t = preg_replace_callback('/\(([^()]*)\)/','callback1',$s))) $s=$t;
    preg_match_all('![-+/*].*?[\d.]+!', "+$s", $m);
    return array_reduce($m[0], 'callback2');
}
echo string_to_match('2-1'); //returns 1
Community
  • 1
  • 1
kurdtpage
  • 3,142
  • 1
  • 24
  • 24
  • And how about addition? I`ve got a result of 5+5 = 5, + was omitted while parsing(( – Jack Aug 19 '16 at 16:50
2

As create_function got deprecated and I was utterly needed an alternative lightweight solution of evaluating string as math. After a couple of hours spending, I came up with following. By the way, I did not care about parentheses as I don't need in my case. I just needed something that conform operator precedence correctly.

Update: I have added parentheses support as well. Please check this project Evaluate Math String

function evalAsMath($str) {

   $error = false;
   $div_mul = false;
   $add_sub = false;
   $result = 0;

   $str = preg_replace('/[^\d\.\+\-\*\/]/i','',$str);
   $str = rtrim(trim($str, '/*+'),'-');

   if ((strpos($str, '/') !== false ||  strpos($str, '*') !== false)) {
      $div_mul = true;
      $operators = array('*','/');
      while(!$error && $operators) {
         $operator = array_pop($operators);
         while($operator && strpos($str, $operator) !== false) {
           if ($error) {
              break;
            }
           $regex = '/([\d\.]+)\\'.$operator.'(\-?[\d\.]+)/';
           preg_match($regex, $str, $matches);
           if (isset($matches[1]) && isset($matches[2])) {
                if ($operator=='+') $result = (float)$matches[1] + (float)$matches[2];
                if ($operator=='-') $result = (float)$matches[1] - (float)$matches[2]; 
                if ($operator=='*') $result = (float)$matches[1] * (float)$matches[2]; 
                if ($operator=='/') {
                   if ((float)$matches[2]) {
                      $result = (float)$matches[1] / (float)$matches[2];
                   } else {
                      $error = true;
                   }
                }
                $str = preg_replace($regex, $result, $str, 1);
                $str = str_replace(array('++','--','-+','+-'), array('+','+','-','-'), $str);
         } else {
            $error = true;
         }
      }
    }
}

  if (!$error && (strpos($str, '+') !== false ||  strpos($str, '-') !== false)) {
     $add_sub = true;
     preg_match_all('/([\d\.]+|[\+\-])/', $str, $matches);
     if (isset($matches[0])) {
         $result = 0;
         $operator = '+';
         $tokens = $matches[0];
         $count = count($tokens);
         for ($i=0; $i < $count; $i++) { 
             if ($tokens[$i] == '+' || $tokens[$i] == '-') {
                $operator = $tokens[$i];
             } else {
                $result = ($operator == '+') ? ($result + (float)$tokens[$i]) : ($result - (float)$tokens[$i]);
             }
         }
      }
    }

    if (!$error && !$div_mul && !$add_sub) {
       $result = (float)$str;
    }
    return $error ? 0 : $result;
}

Demo: http://sandbox.onlinephpfunctions.com/code/fdffa9652b748ac8c6887d91f9b10fe62366c650

Samir Das
  • 1,878
  • 12
  • 20
  • 5-(-2) should be 7 but it comes out as 3, so seems a big bugged :-) – PoeHaH Nov 10 '19 at 09:51
  • @PoeHaH Not a blunder actually :) It was quite easy to tackle double negations. I have added your test case and it produces right result now https://github.com/samirkumardas/evaluate_math_string By the way, don't tell me it does not raise errors in case of syntax errors. I have not considered that. – Samir Das Nov 10 '19 at 20:20
  • Cool, thanks! I'll run a few more tests and get back if I spot anything weird :-) – PoeHaH Nov 12 '19 at 08:58
1

Here is a somewhat verbose bit of code I rolled for another SO question. It does conform to BOMDAS without eval(), but is not equipped to do complex/higher-order/parenthetical expressions. This library-free approach pulls the expression apart and systematically reduces the array of components until all of the operators are removed. It certainly works for your sample expression: 2-1 ;)

  1. preg_match() checks that each operator has a numeric substring on each side.
  2. preg_split() divides the string into an array of alternating numbers and operators.
  3. array_search() finds the index of the targeted operator, while it exists in the array.
  4. array_splice() replaces the operator element and the elements on either side of it with a new element that contains the mathematical result of the three elements removed.

** updated to allow negative numbers **

Code: (Demo)

$expression = "-11+3*1*4/-6-12";
if (!preg_match('~^-?\d*\.?\d+([*/+-]-?\d*\.?\d+)*$~', $expression)) {
    echo "invalid expression";
} else {
    $components = preg_split('~(?<=\d)([*/+-])~', $expression, 0, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
    var_export($components);  // ['-11','+','3','*','1','*','4','/','-6','-','12']
    while (($index = array_search('*',$components)) !== false) {
        array_splice($components, $index - 1, 3, $components[$index - 1] * $components[$index + 1]);
        var_export($components);
        // ['-11','+','3','*','4','/','-6','-','12']
        // ['-11','+','12','/','-6','-','12']
    }
    while (($index = array_search('/', $components)) !== false) {
        array_splice($components, $index - 1, 3, $components[$index - 1] / $components[$index + 1]);
        var_export($components);  // [-'11','+','-2','-','12']
    }
    while (($index = array_search('+', $components)) !== false) {
        array_splice($components, $index - 1, 3, $components[$index - 1] + $components[$index + 1]);
        var_export($components);  // ['-13','-','12']
    }
    while (($index = array_search('-', $components)) !== false) {
        array_splice($components, $index - 1, 3, $components[$index - 1] - $components[$index + 1]);
        var_export($components); // [-25]
    }
    echo current($components);  // -25
}

Here is a demo of the BOMDAS version that uses php's pow() when ^ is encountered between two numbers (positive or negative).

I don't think I'll ever bother writing a version that handles parenthetical expressions ... but we'll see how bored I get.

mickmackusa
  • 43,625
  • 12
  • 83
  • 136
  • if(!preg_match('~^\d*\.?\d+([*/+-]\d*\.?\d+)*$~',$expression)) throw new \Exception("Invalid expression: $expression"); 142/44 : Invalid expression – javier_domenech Aug 18 '17 at 09:54
  • @vivoconunxino I am going to be away from my computer for the night, but if you create a http://sandbox.onlinephpfunctions.com/ link for me, I'll have a look and try to help you isolate the problem. What php version are you on? – mickmackusa Aug 18 '17 at 10:20
  • Hello mickmackusa, php 7.1. BTW, I did it with: if(!preg_match('~^\d*([*/+-]\d*\.?\d+)*$~',$expression)) throw new \Exception("Invalid expression: $expression"); – javier_domenech Aug 18 '17 at 10:26
  • It doesn't seem to like the variable `$expression`. Is it declared? What is it? – mickmackusa Aug 18 '17 at 11:05
0

You can do it by eval function. Here is how you can do this.

<?php
$exp = "2-1;";
$res = eval("return $exp");
echo $res;    // it will return 1
?>

You can use $res anywhere in the code to get the result.

You can use it in form by changing $exp value.

Here is an example of creating a web calculator.

<?php
if (isset($_POST['submit'])) {
$exp = $_POST['calc'];
$res = eval("return $exp;"); //Here we have to add ; after $exp to make a complete code. 
echo $res;
}
?>
// html code
<form method="post">
<input type="text" name="calc">
<input type="submit" name="submit">
</form>