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

Introduction to PHP printing binary form_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 17:41:21
Original
1710 people have browsed it

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...
Related labels:
source:php.cn
Statement of this Website
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template