Challenge 1: Recursive Count Function
Test your knowledge by writing a recursive version of PHP’s count function.
We'll cover the following...
Problem statement
The count
function in PHP counts all elements in an array or in a countable object. Write a ...