欢迎您 本站地址:  

PHP FILTER_VALIDATE_REGEXP 过滤器


PHP Filter 参考手册 完整的 PHP Filter 参考手册

定义和用法

FILTER_VALIDATE_REGEXP 过滤器根据兼容 Perl 的正则表达式来验证值。

可能的选项:


实例

<?php
$string = "Match this string";

var_dump(filter_var($string, FILTER_VALIDATE_REGEXP,
array("options"=>array("regexp"=>"/^M(.*)/"))))
?>

代码的输出如下所示:

string(17) "Match this string"


PHP Filter 参考手册 完整的 PHP Filter 参考手册
小库提示

扫描下方二维码,访问手机版。