Skip to content

Instantly share code, notes, and snippets.

@alh3im
Created March 22, 2011 12:30
Show Gist options
  • Save alh3im/881138 to your computer and use it in GitHub Desktop.
Save alh3im/881138 to your computer and use it in GitHub Desktop.
$strLength = mb_strlen($suggestString, UTF8);
$strPos = mb_strpos(mb_strtolower($whatYouSuggest), $whatYouType, 0, UTF8);
$label = mb_substr($whatYouSuggest, 0, $strPos, UTF8).
'<em>'.mb_substr($whatYouSuggest, $strPos, $strLength, UTF8).'</em>'.
mb_substr($whatYouSuggest, $strPos + $strLength, mb_strlen($whatYouSuggest, UTF8), UTF8);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment