string(5) "abcde" }//End_php?>说明:以上代码使用时遇到一个问题:分隔符使用','(逗号)时会出问题。 请大家在使用时务必注">
当前位置:Gxlcms > PHP教程 > php对数组按首字符过滤的代码

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

时间:2021-07-01 10:21:17 帮助过:3人阅读

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

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

人气教程排行