$string = '01234';
$match = '0';
if (strpos($string, $match)) echo 'foo';
But no foo 🙁
What IS a good way to match a zero in a string? Thought strpos was the lean, mean way to do it but if it doesn't work for zero (even when you typecast both $string and $match to string) what should I fall back to?