php – 如何捕获无效的preg_match模式?

前端之家收集整理的这篇文章主要介绍了php – 如何捕获无效的preg_match模式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写一个 PHP脚本,它接受来自用户的正则表达式模式,由preg_match()使用.如何检查模式是否有效?
试试吧.
如果模式无效,则 preg_match()将返回FALSE.

Return values: preg_match() returns
the number of times pattern matches.
That will be either 0 times (no match)
or 1 time because preg_match() will
stop searching after the first match.

preg_match_all() on the contrary will
continue until it reaches the end of
subject. preg_match() returns FALSE if an error occurred.

原文链接:https://www.f2er.com/php/137729.html

猜你在找的PHP相关文章