搜索时忽略白色 space
Ignore white space while doing a search
我创建了一个搜索表单,它只能在用户输入与数据库中的内容完全一致时进行搜索。例如,如果 "hello" 在数据库中,则搜索成功,但如果用户要添加白色 space(例如“hello”),则搜索失败。我该怎么做才能忽略 php 中的白色 space?
使用trim函数去除不需要的白色space:
$searchString = trim($searchString);
在此处阅读更多内容:http://php.net/trim
trim — Strip whitespace (or other characters) from the beginning and end of a string
Usage: string trim ( string $str [, string $character_mask = " \t\n\r[=11=]\x0B" ] )
我创建了一个搜索表单,它只能在用户输入与数据库中的内容完全一致时进行搜索。例如,如果 "hello" 在数据库中,则搜索成功,但如果用户要添加白色 space(例如“hello”),则搜索失败。我该怎么做才能忽略 php 中的白色 space?
使用trim函数去除不需要的白色space:
$searchString = trim($searchString);
在此处阅读更多内容:http://php.net/trim
trim — Strip whitespace (or other characters) from the beginning and end of a string
Usage: string trim ( string $str [, string $character_mask = " \t\n\r[=11=]\x0B" ] )