fork download
  1. <?php
  2. $alphabet = [a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z];
  3. $glue = ' ';
  4. $dvoich = '';
  5. $code = array_flip($alphabet);
  6. foreach ($code as $symbol => $number) {
  7. $ostatok;
  8. $dvoich = '';
  9. $number1 = $number; //Переменная $number1 вводится, чтобы $number оставалась прежней для её выведения
  10. for ($i=1; $i<=5; $i++) {
  11. $ostatok = $number1%2;
  12. $dvoich = $ostatok . $dvoich;
  13. $number1 = ($number1 - $ostatok)/2;
  14. }
  15. $code[$symbol] = "{$dvoich}";
  16. }
  17. $text = 'This is test message.'; //В '' вставлять сообщение на латинице.
  18. $text1 = mb_strtolower($text);
  19. $Text = strtr($text1, $code);
  20. echo $Text;
  21. ?>
Success #stdin #stdout #stderr 0.02s 52472KB
stdin
Standard input is empty
stdout
10011001110100010010 0100010010 10011001001001010011 01100001001001010010000000011000100.
stderr
PHP Notice:  Use of undefined constant a - assumed 'a' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant b - assumed 'b' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant c - assumed 'c' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant d - assumed 'd' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant e - assumed 'e' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant f - assumed 'f' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant g - assumed 'g' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant h - assumed 'h' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant i - assumed 'i' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant j - assumed 'j' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant k - assumed 'k' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant l - assumed 'l' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant m - assumed 'm' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant n - assumed 'n' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant o - assumed 'o' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant p - assumed 'p' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant q - assumed 'q' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant r - assumed 'r' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant s - assumed 's' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant t - assumed 't' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant u - assumed 'u' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant v - assumed 'v' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant w - assumed 'w' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant x - assumed 'x' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant y - assumed 'y' in /home/jWMUCX/prog.php on line 3
PHP Notice:  Use of undefined constant z - assumed 'z' in /home/jWMUCX/prog.php on line 3