为什么这个preg_match模式不起作用? (检测4或5位数字符串)

时间:2015-02-13 17:06:43

标签: php

这给出了一个错误,说分隔符是错误的,但我不明白为什么:

preg_match( $search_location, "/(\d{4,5})/", $matches);

1 个答案:

答案 0 :(得分:1)

手册页http://php.net/manual/en/function.preg-match.php

int preg_match ( string $pattern , string $subject [, array &$matches [, int $flags = 0 [, int $offset = 0 ]]] )

你有

preg_match( $search_location, "/(\d{4,5})/", $matches);

你的论点不合时宜。