Services webmasters
Partenaires
Jeux concours gratuits
 
Conversions en PHP.
<<<
Définition du type zval . Structure Zend zval
>>>

8.9.5 Accéder aux arguments
8.9 Gestion des arguments
8 Développer PHP 4.0
 Manuel PHP

Fonction de conversion
Conversions en PHP.
->Définition du type zval .
Structure Zend zval
Structure Zend zvalue_value
Constantes de type Zend Variable

Définition du type zval .

typedef pval zval;
     
typedef struct _zval_struct zval;

typedef union _zvalue_value {
    long lval;                    /* valeur long */
    double dval;                /* valeur double */
    struct {
        char *val;
        int len;
    } str;
    HashTable *ht;                /* table de hash */
    struct {
        zend_class_entry *ce;
        HashTable *properties;
    } obj;
} zvalue_value;

struct _zval_struct {
    /* Information sur la variable */
    zvalue_value value;        /* valeur */
    unsigned char type;    /* type actif */
    unsigned char is_ref;
    short refcount;
};
<< Définition du type zval . >>
Conversions en PHP. Accéder aux arguments Structure Zend zval
Services webmasters
Les manuels
 
CoursPHP.com - Reproduction interdite -