//Need to get the mid point of array. Use Floor because we always want to round down. $mid = floor($count/2); //If there are an even amount of elements... if (($count ...
Is it possible to find the dimesnions of an array once it has been passed to a function? sizeof (array) just gives me "4" no matter what the actual size of the array... I've tried scope resolution, ...