parse search string for phrases and keywords

后端 未结 3 2047
滥情空心
滥情空心 2021-02-04 14:41

i need to parse a search string for keywords and phrases in php, for example

string 1: value of \"measured response\" detect goal \"method valuation\" study

3条回答
  •  你的背包
    2021-02-04 15:34

    preg_match_all('/(?

    This should yield the results you are looking for.

    Explanation :

    # (?

提交回复
热议问题