operator

Operator overloading for Objects


Operator overloading for: +, -, *, /, %, <<, >>, ., |, &, ^, ~, !, ++, --,
+=, -=, *=, /=, %=, <<=, >>=, .=, |=, &=, ^=, ~=,
==, !=, ===, !==, <, and <= operators.
Conditional support for > and >= available with application of a patch.

License: PHP

Latest releases

Version Release Download
0.5.0 2025-02-26 operator-0.5.0.tgz
0.4.1 2013-02-07 operator-0.4.1.tgz
0.4.0 2013-02-06 operator-0.4.0.tgz
Show all releases

Changelog

Version Message
0.5.0 This is a complete rewrite.
* Updated to add support for PHP 8.2+. Support for this extension was lost in PHP 7.4 because of a change in the way that assignment operators are handled by the engine.
* Added support for the spaceship operator.
* Added support for the greater than and greater than or equal to operators without the need for a parser patch.

Note: This extension will work with PHP 8.0-8.1, but will segfault when you overload the assignment operator and change data types from a non-string to a string, and sometimes from a null to a non-null. If you wish to use it in PHP < 8.2, you have been warned.
0.4.1 Extension updated to be compatible with PHP5.3 and PHP5.4.
0.4.0 Extension updated to be compatible with PHP5.3 and PHP5.4.
Show complete changelog