Skip to content

Instantly share code, notes, and snippets.

@bayleedev
Created September 18, 2012 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bayleedev/3744281 to your computer and use it in GitHub Desktop.
Save bayleedev/3744281 to your computer and use it in GitHub Desktop.
Get all alpha characters
<?php
$alpha = array_map('chr', range(97, 122)); // a-z
$_alpha = array_map('chr', range(65, 90)); // A-Z
print_r($alpha);
print_r($_alpha);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment