復制代碼 代碼如下:
<?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
另:這段代碼發現了一個奇怪的問題:分隔符使用','(逗號)的時候會出現問題。