Intelligently parse user search terms in PHP

undasein

New Member
I am in the midst of creating a search service for my PHP website and I was wondering how others have gone about intelligently parsing search terms based on quotation marks (and possibly other symbols in the future). In others words, the search term screwdriver hammer might yield an array of ['screwdriver', 'hammer'], but "flathead screedriver" hammer might yield ['flathead screwdriver', 'hammer'].I know I can accomplish this in a sloppy loop, but I'm sure PHP has something built in to handle this.
 
Back
Top