Searched refs:tmp_val (Results 1 – 4 of 4) sorted by relevance
/php-src/ext/standard/ |
H A D | mail.c | 176 zval *tmp_val; in php_mail_build_headers_elems() local 178 ZEND_HASH_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(val), tmp_key, tmp_val) { in php_mail_build_headers_elems() 183 ZVAL_DEREF(tmp_val); in php_mail_build_headers_elems() 184 if (Z_TYPE_P(tmp_val) != IS_STRING) { in php_mail_build_headers_elems() 185 … must only contain values of type string, %s found", ZSTR_VAL(key), zend_zval_value_name(tmp_val)); in php_mail_build_headers_elems() 188 php_mail_build_headers_elem(s, key, tmp_val); in php_mail_build_headers_elems()
|
/php-src/ext/pdo/ |
H A D | pdo_stmt.c | 2365 zval tmp_val; in row_prop_exists() local 2370 retval = row_read_column_number(stmt, lval, &tmp_val); in row_prop_exists() 2372 retval = row_read_column_name(stmt, name, &tmp_val); in row_prop_exists() 2378 ZEND_ASSERT(retval == &tmp_val); in row_prop_exists() 2379 bool res = check_empty ? i_zend_is_true(retval) : Z_TYPE(tmp_val) != IS_NULL; in row_prop_exists() 2399 zval tmp_val; in row_dim_exists() local 2400 zval *retval = row_read_column_number(stmt, column, &tmp_val); in row_dim_exists() 2404 ZEND_ASSERT(retval == &tmp_val); in row_dim_exists() 2405 bool res = check_empty ? i_zend_is_true(retval) : Z_TYPE(tmp_val) != IS_NULL; in row_dim_exists()
|
/php-src/ext/session/ |
H A D | session.c | 2674 zend_string *tmp_val; in PHP_FUNCTION() local 2675 zend_string *val = zval_get_tmp_string(value, &tmp_val); in PHP_FUNCTION() 2679 zend_tmp_string_release(tmp_val); in PHP_FUNCTION()
|
/php-src/ext/curl/ |
H A D | interface.c | 2113 zend_string *val, *tmp_val; in _php_curl_setopt() local 2158 val = zval_get_tmp_string(current, &tmp_val); in _php_curl_setopt() 2160 zend_tmp_string_release(tmp_val); in _php_curl_setopt()
|
Completed in 27 milliseconds