Guest User

Untitled

a guest
Feb 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1.  
  2. typedef union _zvalue_value {
  3. long lval; /* long value */
  4. double dval; /* double value */
  5. struct {
  6. char *val;
  7. int len;
  8. } str;
  9. HashTable *ht; /* hash table value */
  10. zend_object_value obj;
  11. } zvalue_value;
  12.  
  13. struct _zval_struct {
  14. /* Variable information */
  15. zvalue_value value; /* value */
  16. zend_uint refcount;
  17. zend_uchar type; /* active type */
  18. zend_uchar is_ref;
  19. };
Add Comment
Please, Sign In to add comment