开发者

What is the size of a bool in PHP?

What is the size of a bool in PHP?

For an int, it's easy to determine

echo PHP_INT_SI开发者_如何学PythonZE;

I got 4 so 8 bytes or 32 bits. What about for a bool type? Thanks.


The size of a bool can be found by looking at the php source directory Zend/zend_types.h:

typedef unsigned char zend_bool;

With the size of unsigned char being 1 byte.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜