Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8439485
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T08:00:56+00:00 2026-06-10T08:00:56+00:00

I would like to know if there was a secure way to evaluate mathematics

  • 0

I would like to know if there was a secure way to evaluate mathematics like

2+2
10000+12000
10000-20
2 + 2
40 - 20 + 23 - 12

Without having to use eval() because the input can come from any users. The things I’d need to implement are only additions and subtractions of whole numbers.

Is there any snippets that already exists for that, or any PHP functions I haven’t come across?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T08:00:57+00:00Added an answer on June 10, 2026 at 8:00 am

    I would question using eval, considering the variety of mathematic functions available in PHP. You’ve said you only want to do simple math — the only reason to use eval is to perform more complex operations, or to accept the equations whole-cloth from the user.

    If you just want to add or subtract, sanitize the input with intval and go to town:

    $number1 = '100';
    $number2 = 'shell_exec(\'rm -rf *\')';
    echo intval($number1) + intval($number2); // 100
    

    Try it: http://codepad.org/LSUDUw1M

    This works because intval ignores anything non-numeric.

    If you are indeed getting the whole equation from user input (ie 100 - 20), you can use preg_replace to remove anything except the allowed operators and numbers:

    $input = '20 + 4; shell_exec(\'rm *\')';
    $input = preg_replace(
        '/[^0-9+-]/', 
        '',
        $input
    );
    eval('$result = '.$input.';');
    echo 'result: '.$result; // 24
    

    Try it: http://codepad.org/tnISDPJ3

    Here, we’re using the regex /[^0-9+-]/, which matches anything NOT 0-9 OR + OR – and replaces it with an empty string.

    If you want to get more in to depth with allowed equations, taken straight from the eval manual page:

    // credit for code to bohwaz (http://www.php.net/manual/en/function.eval.php#107377)
    $test = '2+3*pi';
    
    // Remove whitespaces
    $test = preg_replace('/\s+/', '', $test);
    
    $number = '(?:\d+(?:[,.]\d+)?|pi|π)'; // What is a number
    $functions = '(?:abs|a?cosh?|a?sinh?|a?tanh?|exp|log10|deg2rad|rad2deg|sqrt|ceil|floor|round)'; // Allowed PHP functions
    $operators = '[+\/*^%-]'; // Allowed math operators
    $regexp = '/^(('.$number.'|'.$functions.'\s*\((?1)+\)|\((?1)+\))(?:'.$operators.'(?2))?)+$/'; // Final regexp, heavily using recursive patterns
    
    if (preg_match($regexp, $q))
    {
        $test = preg_replace('!pi|π!', 'pi()', $test); // Replace pi with pi function
        eval('$result = '.$test.';');
    }
    else
    {
        $result = false;
    }
    

    Documentation

    • preg_replace – http://php.net/manual/en/function.preg-replace.php
    • intval – http://php.net/manual/en/function.intval.php
    • eval – http://php.net/manual/en/function.eval.php
    • PHP Math functions – http://www.php.net/manual/en/ref.math.php
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know if there's a way in java to find out
I would like to know if there is a way to execute polygons queries
I would like to know if there exists any kind of library or workaround
I would like to know if there is any kind of tool to monitor
I would like to know if there is a method to create share buttons
I would like to know is there any difference in performance between these two
I would like to know if there are any good resources (online or books)
I would like to know if there any shorter expression exists, than this: '0000-00-00
i would like to know if there is an event for every time someone
I would like to know if there is a variant data type in Delphi

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.