欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php对数组按首字符过滤的代码

程序员文章站 2024-01-02 19:26:58
...
  1. $array = array(

  2. 'abcd',
  3. 'abcde',
  4. 'bcde',
  5. 'cdef',
  6. 'defg',
  7. 'defgh'
  8. );
  9. $str = '~'.implode('~',$array).'~';
  10. $word = $_GET['word']; //url = xxx.php?word=a
  11. preg_match_all("/~({$word}(?:[^~]*))/i",$str,$matches);
  12. var_dump($matches[1]);
  13. //输出

  14. //array(2) { [0]=> string(4) "abcd" [1]=> string(5) "abcde" }
  15. //End_php
  16. ?>
复制代码

说明: 以上代码使用时遇到一个问题:分隔符使用','(逗号)时会出问题。 请大家在使用时务必注意啊。

上一篇:

下一篇: