is there a more gallant way to check if last character is "s" or "z" than:
if (substr($var, -1, 1) == "s" OR substr($var, -1, 1) == "z") ...
Something like
if (substr($var, -1, 1) == "s" OR "z") ...
would be nice, but is there something like this in PHP?