Etienne Kneuss

home » repository » php » Math_Expression » Operators » Math_Expression_Operator.php
Tree:
school
mp3
php
sample
publications
Math_Derivative
Math_Expression
Operators
Math_Expression_Operator_Basics.php
Math_Expression_Operator.php
Exceptions
Structures
example.php
Expression.php
Math_Expression-0.3.tar.gz
Math_Expression-0.2.tar.gz
ircbot
php.net
images
dump

Source code raw phps

    <?php abstract class Math_Expression_Operator {     const ASSOC_NONE  = 0;     const ASSOC_RIGHT = 1;     const ASSOC_LEFT  = 2;     public $precedence    = 0;     public $regex         = '/^/';     public $value         = '';     public $associativity = self::ASSOC_NONE;     public function __toString()     {         return $this->value;     } } ?>

Comments

There is currently no comment here.

Add a comment

Username:

Spam Challenge: 8+9=?

Comment: