Home
last modified time | relevance | path

Searched refs:ret_array (Results 1 – 3 of 3) sorted by relevance

/PHP-7.1/ext/standard/
H A Dexec.c209 zval *ret_code=NULL, *ret_array=NULL; in php_exec_ex() local
217 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|z/z/", &cmd, &cmd_len, &ret_array, &ret_code) == FAI… in php_exec_ex()
230 if (!ret_array) { in php_exec_ex()
233 if (Z_TYPE_P(ret_array) != IS_ARRAY) { in php_exec_ex()
234 zval_dtor(ret_array); in php_exec_ex()
235 array_init(ret_array); in php_exec_ex()
237 ret = php_exec(2, cmd, ret_array, return_value); in php_exec_ex()
/PHP-7.1/ext/pgsql/
H A Dphp_pgsql.h220 PHP_PGSQL_API int php_pgsql_select(PGconn *pg_link, const char *table, zval *ids, zval *ret_array, …
221 PHP_PGSQL_API int php_pgsql_result2array(PGresult *pg_result, zval *ret_array, long fetch_option);
H A Dpgsql.c7049 PHP_PGSQL_API int php_pgsql_result2array(PGresult *pg_result, zval *ret_array, long result_type) argument
7056 assert(Z_TYPE_P(ret_array) == IS_ARRAY);
7085 add_index_zval(ret_array, pg_row, &row);
7093 …pgsql_select(PGconn *pg_link, const char *table, zval *ids_array, zval *ret_array, zend_ulong opt,… argument
7103 assert(Z_TYPE_P(ret_array) == IS_ARRAY);
7131 ret = php_pgsql_result2array(pg_result, ret_array, result_type);

Completed in 30 milliseconds