Answer:
<?php
$keys = range('a', 'z');
$values = array_fill(0, 26, 0);
$freq = array_combine($keys, $values);
$words = "The day on which the Super Bowl is played, now considered by some as an unofficial national holiday, is called 'Super Bowl Sunday'. It is the second-largest day for U.S food consumption, after Thanksgiving Day. In addition, the Super Bowl has frequently been the most-watched American television broadcast of the year; the seven most-watched broadcasts in the U.S television history are Super Bowls. In 2015, Super Bowl XLIX became the most-watched American television program in history with an average audience of 114.4 million viewers; the fifth time in six years the game had set a record, starting with the 2010 Super Bowl, which itself had taken-over the number-one spot held for 27 years by the final episode of M*A*S*H. The Super Bowl is also among the most-watched sporting events in the world, almost all audiences being North American, and is second to soccer's UEFA Champions League final as the most watched annual sporting event worldwide.";
$len = strlen($words);
for ($i=0; $i<$len; $i++) {
$letter = strtolower($words[$i]);
if (array_key_exists($letter, $freq)) {
$freq[$letter]++;
}
}
print_r($freq)
Explanation: