php陣列中需要對陣列按首字元過濾,透過下面的程式碼實現了,需要的朋友可以參考下
程式碼如下:
<?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中文網其他相關文章!