Home
last modified time | relevance | path

Searched refs:tmp_val (Results 1 – 5 of 5) sorted by relevance

/PHP-8.3/ext/standard/
H A Dmail.c169 zval *tmp_val; in php_mail_build_headers_elems() local
171 ZEND_HASH_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(val), tmp_key, tmp_val) { in php_mail_build_headers_elems()
176 ZVAL_DEREF(tmp_val); in php_mail_build_headers_elems()
177 if (Z_TYPE_P(tmp_val) != IS_STRING) { in php_mail_build_headers_elems()
178 … must only contain values of type string, %s found", ZSTR_VAL(key), zend_zval_value_name(tmp_val)); in php_mail_build_headers_elems()
181 php_mail_build_headers_elem(s, key, tmp_val); in php_mail_build_headers_elems()
/PHP-8.3/ext/pdo/
H A Dpdo_stmt.c2357 zval tmp_val; in row_prop_exists() local
2362 retval = row_read_column_number(stmt, lval, &tmp_val); in row_prop_exists()
2364 retval = row_read_column_name(stmt, name, &tmp_val); in row_prop_exists()
2370 ZEND_ASSERT(retval == &tmp_val); in row_prop_exists()
2371 int res = check_empty ? i_zend_is_true(retval) : Z_TYPE(tmp_val) != IS_NULL; in row_prop_exists()
2388 zval tmp_val; in row_dim_exists() local
2389 zval *retval = row_read_column_number(stmt, column, &tmp_val); in row_dim_exists()
2393 ZEND_ASSERT(retval == &tmp_val); in row_dim_exists()
2394 int res = check_empty ? i_zend_is_true(retval) : Z_TYPE(tmp_val) != IS_NULL; in row_dim_exists()
/PHP-8.3/ext/oci8/
H A Doci8.c993 zval *tmp_val = (zval *) NULL; in php_oci_do_connect_ex() local
998 tmp_val = zend_hash_index_find(&EG(regular_list), connection->id->handle); in php_oci_do_connect_ex()
999 if ((tmp_val != NULL) && (Z_TYPE_P(tmp_val) == IS_RESOURCE)) { in php_oci_do_connect_ex()
1000 tmp = Z_RES_VAL_P(tmp_val); in php_oci_do_connect_ex()
1003 if ((tmp_val != NULL) && (tmp != NULL) && in php_oci_do_connect_ex()
/PHP-8.3/ext/session/
H A Dsession.c2572 zend_string *tmp_val; in PHP_FUNCTION() local
2573 zend_string *val = zval_get_tmp_string(value, &tmp_val); in PHP_FUNCTION()
2577 zend_tmp_string_release(tmp_val); in PHP_FUNCTION()
/PHP-8.3/ext/curl/
H A Dinterface.c2158 zend_string *val, *tmp_val; in _php_curl_setopt() local
2207 val = zval_get_tmp_string(current, &tmp_val); in _php_curl_setopt()
2209 zend_tmp_string_release(tmp_val); in _php_curl_setopt()

Completed in 44 milliseconds