I have an array with a bunch of words. E.g:
array( developer,develop,development,design,designer,designing )
I want to be able to group these words together with their similar words so I’d get something like this:
array(
array( develop, developer, development ),
array( design, designer, designing ),
);
What would be the best way to do this in PHP?
You can do it easily using
metaphone():print_r($result);will show: