Reading an online resource on PHP about Regexp(TuxRadar). According to the author the following should not match "aaa1" to the pattern and therefore return false(0), but I get true(1).
<?php
$str = "aaa1";
print preg_match("/[a-z]+[0-9]?[a-z]{1}/", $str);
?>
Why?