用PHP循环遍历字母表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHP循环遍历字母表相关的知识,希望对你有一定的参考价值。
Loops through ASCII characters to display alphabet, useful for alphabetic filtering links.eg: A | B | C | D ...
// Loop through ASCII characters until reaching 90 for ($i=65; $i<=90; $i++) { // store the character // build alphabetical link $alphabet .= '<a title="filter results by letter '.$letter.'" href="/business/'.$letter.'"> '; $alphabet .= $letter; $alphabet .= '</a> | '; } // print links echo $alphabet;
以上是关于用PHP循环遍历字母表的主要内容,如果未能解决你的问题,请参考以下文章
如何让 Python 循环遍历句子,但它给了我句子中的单词而不是句子中的每个字母? [复制]