PHP Questions Home

Categories

Arrays
Files
Forms
Functions
Images
MySQL
Numbers
Others
Strings
Website


PHP Functions

PHP Functions


More PHP

Top Questions
Ask a Question

Arrays Questions and Answers


Here are all the questions currently listed on PHP Questions in the Arrays category:


Arrays

How do you remove duplicate values from an array?
How can I easily view all members of an array?
How can I check if a value is already in an array?
How can I mix up the order of values in an array?
How do I find the size of an array?
How do I sort the members of an array by value?
How do I reverse sort the members of an array?
How do I sort an array by key?
How do I reverse sort an array by key?
How can I sort an array keeping the correlation between the index and value?
How can I reverse sort an array keeping the correlation between the index and value?
How can I loop through the members of an array?
How do I turn an array into a string?
How can I create an array of numbers easily?
How can I create an array of the letters of the alphabet?
How do I check if a variable is of array type?
How do I count the number of times a value appears in an array?
I want to invert my array, can I do this?
I am not interested in the values in the arrays, how can I discard them?
How do I remove and view the last element of an array?
How do I add to the end of an array and know how large the array is?
How do I pick a random value from an array?
How do I reverse the order of the elements in an array?
How do I remove the first element from an array?
How do I add to the beginning of an array and find the number of elements in it?
How do I return all the values in an array?
How do I find out if a value is already in an array?
How do I sort alphanumeric array data correctly?
How can I reset an array in PHP?
How do I write my own sort function?
How do I remove an element from an array without changing the index values for the rest of the array?
How can I display values in a two dimensional array?