Home > php教程 > php手册 > body text

二进制直接量(binary number format)

WBOY
Release: 2016-06-21 08:52:56
Original
1733 people have browsed it

 

从PHP5.4开始, 我们可以直接在代码中书写二进制直接量了. 这个在定义一些标志位的时候, 尤为方便.

看下面的例子:

$bin = 0b1101;
echo $bin;

//13
而在以前, 我们需要使用bin2dec来用字符串表示, 这个着实有些不爽.

另外, PHP5.4还新增了hex2bin 可以直接把一个十六进制表示的字符串, 转换成二进制数据流, 而在以前, 我们需要使用pack来完成.

$hex = "ff0f";
var_dump(hex2bin($hex) === pack("H*", $hex));

//bool(true);
不过, 还是要提醒下: PHP 5.4还处于开发阶段, 在最终release之前, 任何新特性都可能被调整或者更改. 如果大家有任何建议, 也欢迎反馈, 帮助我们使得PHP变得更好.



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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template