用PHP循环遍历字母表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHP循环遍历字母表相关的知识,希望对你有一定的参考价值。

Loops through ASCII characters to display alphabet, useful for alphabetic filtering links.

eg: A | B | C | D ...
  1. // Loop through ASCII characters until reaching 90
  2. for ($i=65; $i<=90; $i++) {
  3.  
  4. // store the character
  5. $letter = chr($i);
  6.  
  7. // build alphabetical link
  8. $alphabet .= '<a title="filter results by letter '.$letter.'" href="/business/'.$letter.'"> ';
  9. $alphabet .= $letter;
  10. $alphabet .= '</a> | ';
  11. }
  12.  
  13. // print links
  14. echo $alphabet;

以上是关于用PHP循环遍历字母表的主要内容,如果未能解决你的问题,请参考以下文章

如何让 Python 循环遍历句子,但它给了我句子中的单词而不是句子中的每个字母? [复制]

Java 求解划分字母区间

请问php中如何用for循环遍历出关联数组,不要用foreach,用for循环哦

在 Bash 中循环遍历字母

PHP数组循环?

PHP必用代码片段