<?php function compareByName($a, $b) { return strcmp($a->name, $b->name); } usort($cityPages->data, 'compareByName'); // $cityPages->data are the array which we want ...
This exercise allows you to practice and apply the concepts and techniques taught in class. We have just learned some useful methods that will help us manipulate objects and arrays. In this exercise, ...