php 如何实现按字母搜索

2025-01-07 06:39:32
推荐回答(4个)
回答(1):

把需要查询的字段内容转换成字母存放在一个字段里,然后查询。

回答(2):

什么意思?对字符串里的字母可以用正则表达式获取
google 精通 php正则

回答(3):

用正则表达式轻松搞定

回答(4):

'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