Posts by Lucas Rodrigues Sena • 141 points
2 posts
-
3
votes1
answer1294
viewsA: Phonetic search on SQL server
There is already a post of this How to make a phonetic algorithm for Brazilian Portuguese? But I have already ventured into nondatabase voice recognition codes, I think it could help increase your…
-
1
votes3
answers14457
viewsA: Traversing Object array and accessing a value
// Foreach creates a copy $array = [ "foo" => ['bar', 'baz'], "bar" => ['foo'], "baz" => ['bar'], "batz" => ['end'] ]; // while(list($i, $value) = each($array)) { // Try this next…