function ascii_to_dec($str) { for ($i = 0, $j = strlen($str); $i < $j; $i++) { $dec_array[] = ord($str{$i}); } return $dec_array; }