Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Is there any function to find repeated value in an array?
What is w2 standard

Answer Posted / amitverma

Yes, there's a function for everything in PHP :)
To see the repeated values in an array you may use function
array_count_values($array);

This function will return you an array, consisting each
vaule's frequency associated with it.


##
#Following Code -

$array = array(1, "hello", 1, "world", "hello");
print_r(array_count_values($array));

##
#Outputs -

Array
(
[1] => 2
[hello] => 2
[world] => 1
)

Is This Answer Correct ?    11 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How is the comparison of objects done in php?

870


Why do we use inheritance in php?

996


How do I clear my browser session?

975


What is the use of header() function in PHP? What the Limitation of HEADER()?

987


What is the difference between md5(), crc32() and sha1() crypto on php?

1009


How do you use an array in excel?

1038


Explain the difference between isset() and empty()?

894


What the limitation of header() function in php?

907


What is the difference between single-quoted and double-quoted strings in php?

1002


Is null function in php?

970


What does $_server means?

920


Explain what are the different errors in php?

946


Tell us what is the difference between session_unregister() and session_unset()?

954


What is helper function?

885


Explain me difference between mysql_connect and mysql_pconnect?

908