phpdeduplication

What's the best way to remove duplicates from a string in PHP (or any language)?


I am looking for the best known algorithm for removing duplicates from a string. I can think of numerous ways of doing this, but I am looking for a solution that is known for being particularly efficient.

Let's say you have the following strings:

I would expect this algorithm to output for each (respectively):

Note, I am doing this in PHP, in case anybody is aware of any built in PHP functions that can help with this.

Thanks!


Solution

  • $arr = explode( " " , $string );
    $arr = array_unique( $arr );
    $string = implode(" " , $arr);