Alexandr Tatulchenkov
Results
2
issues of
Alexandr Tatulchenkov
How to intercept `is identical` (===) check ? e.g. ```php $o1 == $o2; ``` will trigger __compare() handler, while ```php $o1 === $o2; ``` doesn't trigger neither __compare() nor __doOperation()...
question
Consider the following code: ```php