PHP. Руководство по PHP. 2005
Longs (Integers) Пред.
Глава 53. Creating Variables
Longs (Integers)
Now let's get to the assignment of data to variables, starting with
longs. Longs are PHP's integers and are very simple to store. Looking at
the zval.value container structure discussed earlier in this
chapter, you can see that the long data type is directly contained in the union,
namely in the lval field. The corresponding
type value for longs is IS_LONG
(see Прим. 53-2).
Alternatively, you can use the macro ZVAL_LONG:
zval *new_long; |
Creating Variables
Doubles (Floats)