PHP provides various methods for sorting arrays:sort(), asort(), rsort(), arsort() and ksort(). we will discuss each function one by one. Continue reading “Sorting Arrays in PHP”
Tag: Array in PHP
How to get elements in the array that contain data in PHP – list() and each() function
We can use list() and each() function to return only the elements in the array that contain data. With the help of list() and each() functions, we can use entire contents of an array with minimum efforts. Continue reading “How to get elements in the array that contain data in PHP – list() and each() function”
next() and prev() functions in an array of PHP
You can get the index of a new element added to an array with the help of next() function. next() and prev() functions enable us to navigate through arrays by moving the pointer to the next or previous element in the array.
Continue reading “next() and prev() functions in an array of PHP”
Current() and Key() functions in PHP
Current() and Key() are the useful functions. PHP uses a pointer to keep track of which element being used by the script. We can use Current() and Keys() function to find out the value and index respectively. Continue reading “Current() and Key() functions in PHP”
Arrays in PHP
Simply an Array is a group of the data items or we can say An Array is a set of variables that all have same name. for example we can define an array Capitals to represent a set of the capitals name of the some countries. Continue reading “Arrays in PHP”