目录

PHP preg_grep() 函数

❮ PHP 正则表达式参考

示例

从数组中获取以 "p" 开头的项目:

<?php
$input = [
  "Red",
  "Pink",
  "Green",
  "Blue",
  "Purple"
];

$result = preg_grep("/^p/i", $input);
print_r($result);
?>
亲自试一试 »

定义和用法

这个preg_grep()函数返回一个仅包含输入中与给定模式匹配的元素的数组。


语法

preg_grep( pattern, input, flags)

参数值

Parameter Description
pattern Required. Contains a regular expression indicating what to search for
input Required. An array of strings
flags Optional. There is only one flag for this function. Passing the constant PREG_GREP_INVERT will make the function return only items that do not match the pattern.

技术细节

返回值: 返回一个包含与提供的模式匹配的字符串的数组
PHP 版本: 4+

❮ PHP 正则表达式参考