這篇文章主要介紹了PHP 變數結構體的相關知識,文中提到了PHP5中的zval和PHP 7 中的zval,程式碼簡單易懂,需要的朋友可以參考下
#PHP5 中的zval
// 1. zval typedef struct _zval_struct { zvalue_value value; zend_uint refcount__gc; zend_uchar type; zend_uchar is_ref__gc; } zval; // 2. zvalue_value typedef union _zvalue_value { long lval; // 用于 bool 类型、整型和资源类型 double dval; // 用于浮点类型 struct { // 用于字符串 char *val; int len; } str; HashTable *ht; // 用于数组 zend_object_value obj; // 用于对象 zend_ast *ast; // 用于常量表达式(PHP5.6 才有) } zvalue_value; // 3. zend_object_value typedef struct _zend_object_value { zend_object_handle handle; const zend_object_handlers *handlers; } zend_object_value; // 4. zend_object_handle typedef unsigned int zend_object_handle;
多數文章,在提到PHP5 變數結構體的時候,都提到:sizeof(zval ) == 24, sizeof(zvalue_value) == 16,實際上這個論述並不準確,在CPU 為64bit 時,這個結果是正確的。
但當CPU 為32bit 時: sizeof(zval) == 16, sizeof(zvalue_value) == 8,主要因為CPU 為64bit 時,指標佔用8個位元組,而32bit時,指標為4個位元組。
PHP 7 中的zval
// 1. zval struct _zval_struct { zend_value value; /* value */ union { struct { ZEND_ENDIAN_LOHI_4( zend_uchar type, /* active type */ zend_uchar type_flags, zend_uchar const_flags, zend_uchar reserved) /* call info for EX(This) */ } v; uint32_t type_info; } u1; union { uint32_t next; /* hash collision chain */ uint32_t cache_slot; /* literal cache slot */ uint32_t lineno; /* line number (for ast nodes) */ uint32_t num_args; /* arguments number for EX(This) */ uint32_t fe_pos; /* foreach position */ uint32_t fe_iter_idx; /* foreach iterator index */ uint32_t access_flags; /* class constant access flags */ uint32_t property_guard; /* single property guard */ } u2; }; // 2. zend_value typedef union _zend_value { zend_long lval; /* long value */ double dval; /* double value */ zend_refcounted *counted; zend_string *str; zend_array *arr; zend_object *obj; zend_resource *res; zend_reference *ref; zend_ast_ref *ast; zval *zv; void *ptr; zend_class_entry *ce; zend_function *func; struct { uint32_t w1; uint32_t w2; } ww; } zend_value;
PHP 7的看似很多,但其實更簡單了,不論CPU 是32bit 還是64bit,sizeof(zval) 永遠都是等於16。
主要看 zend_value 中的 ww,是兩個 uint32_t,這個永遠是 8 個位元組,所以 sizeof(zend_value) == 8,因此 sizeof(zval) == 16。
所以 PHP7 新特性提到的節省記憶體這點上,在 32bit 系統中,PHP5 => PHP7 並沒有改變。
順便說下 sizeof,不能當做函數,雖然寫法像函數,這個數值會在編譯期就確定好,非運行期。類似編譯預處理。
總結
#以上是php變數結構體的深入理解的詳細內容。更多資訊請關注PHP中文網其他相關文章!