Skip to content

Instantly share code, notes, and snippets.

@Samshal
Created July 5, 2015 09:05
Show Gist options
  • Save Samshal/bfb05cf93d73ca7bbc9b to your computer and use it in GitHub Desktop.
Save Samshal/bfb05cf93d73ca7bbc9b to your computer and use it in GitHub Desktop.
function getNgrams($match, $n=3)
{
$ngrams = array();
$len = strlen($match);
for ($i = 0; $i < $len; $i++)
{
if ($i > ($n - 2))
{
$ng = '';
for($j = $n - 1; $j >= 0; $j--)
{
$ng .= $match[$i - $j];
}
$ngrams[] = $ng;
}
}
return $ngrams;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment