开发者

What is the size of a bool in PHP?

开发者 https://www.devze.com 2023-03-05 10:59 出处:网络
What is the size of a bool in PHP? For an int, it\'s easy to determine echo PHP_INT_SI开发者_如何学PythonZE;

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

精彩评论

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

关注公众号