fork download
  1. <?php
  2.  
  3. // your code goes here
  4. $bin = 0b00001101; // 13 - ASCII Carriage return
  5. $c = substr($bin, 0, 1); // читаем этот байт
  6. printf("Ожидание: 00001101, реальность: %08b\n", $c); // 00000001
  7.  
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
Ожидание: 00001101, реальность: 00000001