PHP连续输出字母AZ

foreach(range('a','z') as $letter){
echo $letter;
}

原文地址:https://www.cnblogs.com/MichaelZhangX/p/2658732.html