Guest User

Untitled

a guest
Jan 17th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. ini_set('display_errors', true);
  4. error_reporting(E_ALL | E_STRICT);
  5.  
  6. mb_internal_encoding('utf-8');
  7.  
  8. $input = str_split('(p)sа(п)');
  9.  
  10. print_r($input);
  11.  
  12. foreach ($input as $char) {
  13.     $codes[] = ord($char);
  14. }
  15.  
  16. print_r($codes);
Add Comment
Please, Sign In to add comment