php中数组首字符过滤功能代码

前端之家收集整理的这篇文章主要介绍了php中数组首字符过滤功能代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="98226" class="copybut" id="copybut98226" onclick="doCopy('code98226')"> 代码如下:

<div class="codebody" id="code98226">
<?PHP
$array = array(
'abcd',
'abcde',
'bcde',
'cdef',
'defg',
'defgh'
);
$str = '~'.implode('~',$array).'~';
$word = $_GET['word']; //url = xxx.PHP?word=a
preg_match_all("/~({$word}(?:[^~]*))/i",$str,$matches);
var_dump($matches[1]); //输出
//array(2) { [0]=> string(4) "abcd" [1]=> string(5) "abcde" }
//End_PHP

另:这段代码发现了一个奇怪的问题:分隔符使用','(逗号)的时候会出现问题。

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

猜你在找的PHP相关文章