PHP Compiler Testing
How Many Vowels?

Create a function that takes a string and returns the number (count) of vowels contained within it.

Examples

count_vowels("Celebration") 5

 

count_vowels("Palm") 1

 

count_vowels("Prediction") 4