I working on a simple search function where I want to match a part of a string with part of another string.
Example: The search term is: fruitbag I want to match the product: fruit applebag
I want to create something so that the system matches:
- fruitbag
- fruit applebag
Or even "fruit" and "bag".
In summary; parts inside a string need to match with parts inside the search term. Is this possible?
$products = array(
'fruit applebag',
'pinapple',
'carrots',
'bananas',
'coconut oil',
'cabbage',
);
if( ! empty( $_POST['search'] ) ) {
$s = $_POST['search'];
$results = array();
foreach( $products as $index => $product ) {
if( preg_match( '/' . $s . '.*/i', $product, $matched ) ) {
$results[] = $matched[0];
}
}
print_r($results);
// This only returns fruit applebag if the search term is something like "fruit ap"
}
Use something like this (split the searched word into two parts and look for a match thas has characters between those two parts):
Output: