This regex ^.*.*.*.*.*.*00
will return true for this number 10102001
with preg_match.
i know that will catch the first seven numbers, but if the last number is not 0, so, the result should be false and not true. This is what I need. For this number the regex will work as i expect (false): 10102011
10102001 -- true why?
10102011 -- false
What is wrong with the regex?