Posts

Showing posts with the label PHP

Find the last array from multidimensional array in PHP

Image
Today I am going of discuss the following topic:- Find the last array from multidimensional array in PHP :- Take multidimensional Array in PHP:-     $arr[] = array(          "name"  =>  "John 1" ,          "email"  =>  "john1@gmail.com" ,     );     $arr[] = array(          "name"  =>  "John 2" ,          "email"  =>  "john2@gmail.com" ,     );     $arr[] = array(          "name"  =>  "John 3" ,          "email"  =>  "john3@gmail.com" ,     );     $arr[] =...