Array sorting provides a way to organize data sets in either alphabetical order or in numbers, in an ascending or descending manner. PHP provides inbuilt functions to sort an array. Here are the list. sort() – sorts arrays in ascending orderrsort() – sorts arrays in descending orderasort() – sorts associative arrays in ascending order, according … Continue reading PHP Sorting Arrays
Day: March 17, 2019
What is Slim Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs. PHP developers use Slim to develop RESTful APIs and web services.Key features include URL routing, session, and cookie encryption, client-side HTTP caching, and more. It’s the best framework for a small web application that … Continue reading Slim Introduction