Searched refs:str_val (Results 1 – 4 of 4) sorted by relevance
/php-src/ext/pdo_firebird/ |
H A D | firebird_statement.c | 890 zend_string *str_val = zval_try_get_string(val); in pdo_firebird_stmt_set_attribute() local 891 if (str_val == NULL) { in pdo_firebird_stmt_set_attribute() 895 if (ZSTR_LEN(str_val) >= sizeof(S->name)) { in pdo_firebird_stmt_set_attribute() 897 zend_string_release(str_val); in pdo_firebird_stmt_set_attribute() 901 if (isc_dsql_set_cursor_name(S->H->isc_status, &S->stmt, ZSTR_VAL(str_val), 0)) { in pdo_firebird_stmt_set_attribute() 903 zend_string_release(str_val); in pdo_firebird_stmt_set_attribute() 907 memcpy(S->name, ZSTR_VAL(str_val), ZSTR_LEN(str_val) + 1); in pdo_firebird_stmt_set_attribute() 908 zend_string_release(str_val); in pdo_firebird_stmt_set_attribute()
|
/php-src/ext/standard/tests/general_functions/ |
H A D | strval.phpt | 7 echo "*** Testing str_val() with scalar values***\n"; 148 *** Testing str_val() with scalar values***
|
/php-src/ext/soap/ |
H A D | php_encoding.c | 1553 char *str_val = NULL; in to_zval_object_ex() local 1556 str_val = (char*)val->children->content; in to_zval_object_ex() 1557 if (attr->fixed && strcmp(attr->fixed, str_val) != 0) { in to_zval_object_ex() 1558 …ttribute '%s' has fixed value '%s' (value '%s' is not allowed)", attr->name, attr->fixed, str_val); in to_zval_object_ex() 1561 str_val = attr->fixed; in to_zval_object_ex() 1563 str_val = attr->def; in to_zval_object_ex() 1565 if (str_val) { in to_zval_object_ex() 1570 text = xmlNewText(BAD_CAST(str_val)); in to_zval_object_ex()
|
/php-src/ext/standard/ |
H A D | array.c | 4953 zend_string *str_val = zval_get_tmp_string(val, &tmp_str_val); local 4954 retval = zend_hash_add_empty_element(&seen, str_val);
|
Completed in 31 milliseconds