$matches = -50; $res = preg_match('/[1-9]{1,10}/',$matches); print_r($res); //输出1如上面的代码所示,我并没有在正则匹配 - 号,但依然能输入负数,这是怎么回事呢?我该如何用正则表达式禁止负数的输入。 查看完整描述