I'm simply wanting to convert a string which contains an equation into an actual PHP Math Equation, is this possible using PHP5+ ? If so, how?
Here's some examples of which the string may be:
$string = "37-0";
$string = "315+10";
$string = "25+50";
$string = "88-13";
I simply want to parse these into the correct Mathematical answer if that's possible