Good to see PHPTAL is still releasing new versions!
I have a small feature suggestion that looks like something easy to implement - to add EQQ (===) and NEE (!==) operators. I've just found it missing when using x EQ false on a value that can be true|false|null, obviously I used === directly to make it work but new operators would complement the existing ones.
Good to see PHPTAL is still releasing new versions! I have a small feature suggestion that looks like something easy to implement - to add
EQQ
(===
) andNEE
(!==
) operators. I've just found it missing when usingx EQ false
on a value that can betrue|false|null
, obviously I used===
directly to make it work but new operators would complement the existing ones.