Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-11-2011, 10:30 PM   PM User | #1
kamkam
Regular Coder

 
Join Date: Dec 2006
Posts: 306
Thanks: 24
Thanked 0 Times in 0 Posts
kamkam is an unknown quantity at this point
get rid off the repeat word from an array

Hi;

How could i get rid off the repeat words from an array? Thanks

eg;

$a[]="the , think , this , that , the , their , that , the , the , those";

i just want the array reduce to "the, think, that,those".
kamkam is offline   Reply With Quote
Old 11-11-2011, 11:05 PM   PM User | #2
Adee
Regular Coder

 
Join Date: Jul 2010
Location: Oregon City
Posts: 280
Thanks: 5
Thanked 50 Times in 49 Posts
Adee can only hope to improve
use array_unique() function
Adee is offline   Reply With Quote
Users who have thanked Adee for this post:
kamkam (11-12-2011)
Old 11-11-2011, 11:12 PM   PM User | #3
Spookster
Supreme Overlord


 
Spookster's Avatar
 
Join Date: May 2002
Location: Marion, IA USA
Posts: 6,222
Thanks: 4
Thanked 80 Times in 79 Posts
Spookster will become famous soon enough
Use above. But if you were to do this the hard way you could do something like this:

PHP Code:
<?php
$words 
= array('the''think''this''that''the''their''that''the''the''those');
$uniqueWords = array();
foreach (
$words as $word) {
   if (!
in_array($word$uniqueWords)) {
      
$uniqueWords[] = $word;
   }
}  
var_dump($uniqueWords);
?>
__________________
Spookster
CodingForums Supreme Overlord
All Hail Spookster
Who gave you that Ugging infraction? Yeah that's right it was me!
Spookster is offline   Reply With Quote
Users who have thanked Spookster for this post:
kamkam (11-12-2011)
Old 11-12-2011, 12:58 AM   PM User | #4
kamkam
Regular Coder

 
Join Date: Dec 2006
Posts: 306
Thanks: 24
Thanked 0 Times in 0 Posts
kamkam is an unknown quantity at this point
Thanks a lot
kamkam is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 02:03 AM.


Advertisement
Log in to turn off these ads.