Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php print top n of array

//arsort($myArray); //sort if you need to then
print_r(array_slice($myArray, 0, 10));//print top 10 item in array
 
PREVIOUS NEXT
Tagged: #php #print #top #array
ADD COMMENT
Topic
Name
9+1 =