0

preg_match() 将返回

preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash

如果模式不是很好。在传递 preg_match()之前,是否有一个函数可以确定(TRUE 或 FALSE)模式是否格式正确?

4

1 回答 1

0
$match = preg_match('regex', 'string');

if ($match === false) {
    // failed
} elseif ($match == false) {
    // did not matched
} else {
    // matched
}
于 2013-10-17T12:50:20.207 回答