What is the size of a bool in PHP?

谁都会走 提交于 2019-12-08 15:24:44

问题


What is the size of a bool in PHP?

For an int, it's easy to determine

echo PHP_INT_SIZE;

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


回答1:


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.



来源:https://stackoverflow.com/questions/5972039/what-is-the-size-of-a-bool-in-php

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!