Skip to content

Instantly share code, notes, and snippets.

View jonathonwalz's full-sized avatar

Jonathon Walz jonathonwalz

View GitHub Profile
@ircmaxell
ircmaxell / Expressions.php
Created September 21, 2011 16:51
A math parser and evaluator implementation
<?php
class Parenthesis extends TerminalExpression {
protected $precidence = 6;
public function operate(Stack $stack) {
}
public function getPrecidence() {
return $this->precidence;