<?php
$array1=array("hello","world","hello","world",1,1,6);
$result=array_count_values($array1);
print_r($result);
?>