php中数组首字符过滤功能代码_php教程-查字典教程网
php中数组首字符过滤功能代码
php中数组首字符过滤功能代码
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:

复制代码 代码如下:

<?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

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

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新php教程学习
    热门php教程学习
    编程开发子分类