I have to create a simple formula interpreter with PHP. It has to support 4 operators: exp, ln, addition, subtraction and brackets.
Where should I start? I've heard that the formula entered by the user must be transformed into a tree, is that true? Maybe interpreters already exist?