From A till Z in PHP
- Published
Today I discovered a very handy piece of code I wasn't aware of till now. With this code, it's very easy to get an array filled with all characters in the alphabet.
php
<?phprange('a', 'z');?>
Today I discovered a very handy piece of code I wasn't aware of till now. With this code, it's very easy to get an array filled with all characters in the alphabet.
php
<?phprange('a', 'z');?>