是否可以在PHP中确定preg模式是否有效

时间:2013-10-17 12:39:47

标签: php

preg_match()将返回

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

如果图案格式不正确。是否有一个函数来判断(TRUE或FALSE),如果模式传递之前传递给它preg_match()?

1 个答案:

答案 0 :(得分:0)

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

if ($match === false) {
    // failed
} elseif ($match == false) {
    // did not matched
} else {
    // matched
}