Home >Backend Development >PHP Tutorial >Introduction to PHP printing binary form_PHP tutorial

Introduction to PHP printing binary form_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 17:41:211713browse

Introduction to PHP printing binary form

  1. $row[permission]=u;// or =chr(117)
  2.  
  3.  echo "
    id = " . str_pad(decbin(ord(ord($row[permission])),8,0,STR_PAD_LEFT);
  4.  echo " < ;br /> id = ";
  5. printf("%08b
    ",ord($row[permission]));
  6. ?>
  7. Output:
  8. id = 01110101
  9. id = 1110101

printf explanation:
%: % Bit symbol
0: Fill the unfull width with 0
8: 8 bits in total
b: Binary mode

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/486139.htmlTechArticleIntroduction to PHP printing binary form?php $row[permission]=u;// or =chr(117) echo " br / id = " . str_pad(decbin(ord($row[permission])),8,0,STR_PAD_LEFT); echo " br / id = "; printf("%08...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn