Searched defs:fetch (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_5/ext/dba/ |
| H A D | php_dba.h | 79 char* (*fetch)(dba_info *, char *, int, int, int * TSRMLS_DC); member in struct:dba_handler
|
| /PHP_5_5/ext/pdo/ |
| H A D | php_pdo_driver.h | 93 PDO_FETCH_COLUMN, /* fetch a numbered column only */ 95 PDO_FETCH_INTO, /* fetch row into an existing object */ 96 PDO_FETCH_FUNC, /* fetch into function and return its result */ 98 PDO_FETCH_KEY_PAIR, /* fetch into an array where the 1st column is a key and all subsequent columns are values */ 103 #define PDO_FETCH_GROUP 0x00010000 /* fetch into groups */ 104 #define PDO_FETCH_UNIQUE 0x00030000 /* fetch into groups assuming first col is unique */ 105 #define PDO_FETCH_CLASSTYPE 0x00040000 /* fetch class gets its class name from 1st column */ 106 #define PDO_FETCH_SERIALIZE 0x00080000 /* fetch class instances by calling serialize */ 107 #define PDO_FETCH_PROPS_LATE 0x00100000 /* fetch props after calling ctor */ 109 /* fetch orientatio 624 } fetch; member in struct:_pdo_stmt_t [all...] |
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd_structs.h | 770 func_mysqlnd_stmt__fetch fetch; member in struct:st_mysqlnd_stmt_methods
|
| /PHP_5_5/Zend/ |
| H A D | zend_compile.c | 1309 /* TODO: $foo->x->y->z = 1 should fetch "x" and "y" for R or RW, not just W */ 5380 /* if it was usual fetch, we change it to object fetch */ 5883 case IS_CONST: /* fetch_dim_tmp_var will handle this bogus fetch */ 5998 fetch_simple_variable(&lval, varname, 0 TSRMLS_CC); /* Relies on the fact that the default fetch is BP_VAR_W */ 6060 fetch_simple_variable(&lval, varname, 0 TSRMLS_CC); /* Relies on the fact that the default fetch is BP_VAR_W */ 6331 zend_op *fetch = &CG(active_op_array)->opcodes[foreach_token->u.op.opline_num]; local 6335 fetch->extended_value = 0; /* reset ZEND_FE_RESET_VARIABLE */ 6336 while (fetch != end) { 6337 --fetch; [all...] |
Completed in 20 milliseconds