Skip to content

Instantly share code, notes, and snippets.

@HoangPV
Created September 18, 2017 06:25
Show Gist options
  • Save HoangPV/a95e50af943e36029492becc73209a90 to your computer and use it in GitHub Desktop.
Save HoangPV/a95e50af943e36029492becc73209a90 to your computer and use it in GitHub Desktop.
Replace With Alphabet Position (alt solution)
<?php
function alphabet_position( $str ) {
$str = strtolower( $str );
$alphabetChars = 'abcdefghijklmnoqrstuvwxyz';
$report=[];
foreach (str_split($str) as $char) {
$g = (strpos($alphabetChars, $char) !== false) ? strpos($alphabetChars, $char) : '';
if ($g!=='') {
$report[] = $g+1;
}
}
return implode(' ', $report);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment