版本一:
for($i=ord('a'); $i<ord('z'); $i++) { echo chr($i); }
版本二(与第一版类似使用ascii):
for($i=0; $i<26; $i++) { echo chr($i+97); }
版本三:echo implode('', range('a', 'z'));
版本四(高智商坑爹版):
for($i='a'; $i!='aa'; $i++) { echo $i; }
版本五:
for($i='a'; strlen($i)<2; $i++) { echo $i; }
前两个循环很容易理解,a到z每个字母的ascii码值是递增不变的,所以这两个方法就是通过ascii值去做循环计算,用到了php内置的ord()和chr()函数.
第三个方法使用php内置的range()函数生成一个从a到z递增的数组,步长为1,之后用implode函数将数组合并成字符串.
后两个方法就是本篇标题中所要讲的"奇怪现象".
从理论上来讲,咱们用for($i='a'; $i
如果在for循环中每次输出一个换行再观察的话就会发现一个规则,a-z,下一次输出了aa、ab、ac...az,然后是ba、bb、bc...bz....也就是php在给z加一后自动“进位"了,php一个奇特的26进制,当"当前位"的z加1后会向它前面的一位上增加1,然后当前位变为a,'z'++ => 'aa','az'=>'ba','zz'=>'aaa'....
注意的两点:1.这种规律不能用于判断,如'z'
本文地址:
转载随意,但请附上文章地址:-)

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
