Skip to content

Instantly share code, notes, and snippets.

@aqlx86
Last active December 14, 2015 16:19
Show Gist options
  • Save aqlx86/5114682 to your computer and use it in GitHub Desktop.
Save aqlx86/5114682 to your computer and use it in GitHub Desktop.
convert word to upper case without using built-in functions
<?php
$small = range('a', 'z');
$caps = range('A', 'Z');
$s = str_split('abcdef');
foreach($s as $o){
$c.= $caps[array_search($o, $small)];
}
echo $c;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment