Home
last modified time | relevance | path

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

/PHP-7.3/ext/standard/
H A Dexec.c219 zval *ret_code=NULL, *ret_array=NULL; in php_exec_ex() local
226 Z_PARAM_ZVAL_DEREF(ret_array) in php_exec_ex()
240 if (!ret_array) { in php_exec_ex()
243 if (Z_TYPE_P(ret_array) != IS_ARRAY) { in php_exec_ex()
244 zval_ptr_dtor(ret_array); in php_exec_ex()
245 array_init(ret_array); in php_exec_ex()
246 } else if (Z_REFCOUNT_P(ret_array) > 1) { in php_exec_ex()
247 zval_ptr_dtor(ret_array); in php_exec_ex()
248 ZVAL_ARR(ret_array, zend_array_dup(Z_ARR_P(ret_array))); in php_exec_ex()
250 ret = php_exec(2, cmd, ret_array, return_value); in php_exec_ex()
/PHP-7.3/ext/pgsql/
H A Dphp_pgsql.h218 PHP_PGSQL_API int php_pgsql_select(PGconn *pg_link, const char *table, zval *ids, zval *ret_array, …
219 PHP_PGSQL_API int php_pgsql_result2array(PGresult *pg_result, zval *ret_array, long fetch_option);
H A Dpgsql.c7070 PHP_PGSQL_API int php_pgsql_result2array(PGresult *pg_result, zval *ret_array, long result_type) argument
7077 assert(Z_TYPE_P(ret_array) == IS_ARRAY);
7106 add_index_zval(ret_array, pg_row, &row);
7114 …pgsql_select(PGconn *pg_link, const char *table, zval *ids_array, zval *ret_array, zend_ulong opt,… argument
7124 assert(Z_TYPE_P(ret_array) == IS_ARRAY);
7152 ret = php_pgsql_result2array(pg_result, ret_array, result_type);

Completed in 36 milliseconds