Skip to content

Instantly share code, notes, and snippets.

@steppefox
Created October 28, 2013 06:12
Show Gist options
  • Save steppefox/7192097 to your computer and use it in GitHub Desktop.
Save steppefox/7192097 to your computer and use it in GitHub Desktop.
String to Ascii
function string_to_ascii($string)
{
$ascii = array();
for ($i = 0; $i < strlen($string); $i++)
{
$ascii[] =$string[$i].':'.ord($string[$i]);
}
return(implode(' ', $ascii));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment