I want to search the string which contains Rathi 25mm
but I don't want to use the complete word to search .How can i do the search using specific words?
Rathi Stelmax 500 25 mm in stripos
<?php
$title='Rathi Stelmax 500 25 mm';
if (stripos(strtolower($title), 'Rathi 25 mm') !== false)
{
echo 'true';
}
?>