From A to Z in PHP
Today I found a small PHP helper I had somehow missed: range() can give you an array with every letter in the alphabet.
<?php
range('a', 'z');
?>
Today I found a small PHP helper I had somehow missed: range() can give you an array with every letter in the alphabet.
<?php
range('a', 'z');
?>