要根据与指定模式匹配的用户输入过滤数组中的值,您可以可以利用 PHP 强大的 preg_grep 函数与正则表达式结合使用。
考虑以下示例,其中 $data 是包含颜色的数组:
<code class="php"><?php $data = array('orange', 'blue', 'green', 'red', 'pink', 'brown', 'black');</code>
要根据用户的输入查找匹配项,我们将其表示为 $input,您可以执行以下操作:
<code class="php"><?php $input = 'bl'; $input = preg_quote($input, '~'); // Escape special characters in input $result = preg_grep('~' . $input . '~', $data);</code>
在此示例中,我们使用 preg_quote 引用输入以确保正确处理特殊字符。然后,我们使用 preg_grep 和正则表达式来查找数组元素任何部分中 $input 的匹配。
结果是一个仅包含以下内容的数组:
<code class="php"><?php array( 'blue', 'black', );</code>
通过使用这种技术,您可以根据用户输入有效地过滤数组,提供类似于 SQL 的 LIKE '%search%' 的方法。 PHP 数组的运算符。
以上是如何使用类似于 SQL 的 LIKE 运算符的模式在 PHP 中过滤数组?的详细内容。更多信息请关注PHP中文网其他相关文章!