/PHP-8.0/ext/standard/ |
H A D | head.c | 209 *path = zval_get_string(value); in php_head_parse_cookie_options_array() 211 *domain = zval_get_string(value); in php_head_parse_cookie_options_array() 217 *samesite = zval_get_string(value); in php_head_parse_cookie_options_array()
|
H A D | type.c | 236 RETVAL_STR(zval_get_string(value)); in PHP_FUNCTION()
|
H A D | proc_open.c | 165 str = zval_get_string(element); in _php_array_to_envp() 473 zend_string *str = zval_get_string(zv); in get_valid_arg_string()
|
H A D | string.c | 1155 RETURN_STR(zval_get_string(tmp)); in php_implode() 4552 tag = zval_get_string(tmp);
|
/PHP-8.0/Zend/ |
H A D | zend_exceptions.c | 405 RETURN_STR(zval_get_string(prop)); in ZEND_METHOD() 429 RETURN_STR(zval_get_string(prop)); in ZEND_METHOD() 672 zend_string *message = zval_get_string(GET_PROPERTY(exception, ZEND_STR_MESSAGE)); in ZEND_METHOD() 673 zend_string *file = zval_get_string(GET_PROPERTY(exception, ZEND_STR_FILE)); in ZEND_METHOD() 932 zend_string *message = zval_get_string(GET_PROPERTY(&exception, ZEND_STR_MESSAGE)); in zend_exception_error() 933 zend_string *file = zval_get_string(GET_PROPERTY_SILENT(&exception, ZEND_STR_FILE)); in zend_exception_error() 963 file = zval_get_string(GET_PROPERTY_SILENT(&zv, ZEND_STR_FILE)); in zend_exception_error() 976 str = zval_get_string(GET_PROPERTY_SILENT(&exception, ZEND_STR_STRING)); in zend_exception_error() 977 file = zval_get_string(GET_PROPERTY_SILENT(&exception, ZEND_STR_FILE)); in zend_exception_error()
|
H A D | zend_operators.h | 271 static zend_always_inline zend_string *zval_get_string(zval *op) { in zval_get_string() function 325 #define _zval_get_string(op) zval_get_string(op)
|
H A D | zend_execute_API.c | 1532 exception_str = zval_get_string(&exception_zv); in zend_fetch_class_by_name()
|
H A D | zend_language_scanner.l | 715 ZVAL_STR(&tmp, zval_get_string(filename)); in compile_filename()
|
H A D | zend_compile.c | 3054 zend_string *name1 = zval_get_string(zend_ast_get_zval(var_ast->child[0])); in zend_is_assign_to_self() 3055 zend_string *name2 = zval_get_string(zend_ast_get_zval(expr_ast->child[0])); in zend_is_assign_to_self() 3745 name = zval_get_string(zend_ast_get_zval(args->child[0])); in zend_compile_func_defined() 5874 zend_string *encoding_name = zval_get_string(zend_ast_get_zval(value_ast)); in zend_handle_encoding_declaration()
|
H A D | zend_inheritance.c | 2421 exception_str = zval_get_string(&exception_zv); in check_unrecoverable_load_failure()
|
/PHP-8.0/ext/com_dotnet/ |
H A D | com_com.c | 81 server_name = zval_get_string(tmp); in PHP_METHOD() 87 user_name = zval_get_string(tmp); in PHP_METHOD() 92 password = zval_get_string(tmp); in PHP_METHOD() 97 domain_name = zval_get_string(tmp); in PHP_METHOD()
|
/PHP-8.0/ext/ldap/ |
H A D | ldap.c | 297 control_oid = zval_get_string(val); in _php_ldap_control_from_array() 314 tmpstring = zval_get_string(val); in _php_ldap_control_from_array() 329 tmpstring = zval_get_string(tmp); in _php_ldap_control_from_array() 350 assert = zval_get_string(tmp); in _php_ldap_control_from_array() 378 tmpstring = zval_get_string(tmp); in _php_ldap_control_from_array() 523 tmpstring = zval_get_string(tmp); in _php_ldap_control_from_array() 548 tmpstring = zval_get_string(tmp); in _php_ldap_control_from_array() 1544 ldap_base_dn = zval_get_string(entry); in php_ldap_do_search() 1553 ldap_filter = zval_get_string(entry); in php_ldap_do_search() 2767 modval = zval_get_string(fetched); in PHP_FUNCTION() [all …]
|
/PHP-8.0/ext/dom/ |
H A D | xpath.c | 176 zend_string *str = zval_get_string(&retval); in dom_xpath_ext_function_php() 504 zend_string *str = zval_get_string(entry); in PHP_METHOD()
|
/PHP-8.0/sapi/phpdbg/ |
H A D | phpdbg_prompt.c | 723 …file = zval_get_string(zend_read_property(zend_get_exception_base(ex), ex, ZEND_STRL("file"), 1, &… in phpdbg_handle_exception() 732 …msg = zval_get_string(zend_read_property(zend_get_exception_base(ex), ex, ZEND_STRL("string"), 1, … in phpdbg_handle_exception() 1735 …zend_string *file = zval_get_string(zend_read_property(zend_get_exception_base(exception), excepti… in phpdbg_execute_ex() 1737 …zend_string *msg = zval_get_string(zend_read_property(zend_get_exception_base(exception), exceptio… in phpdbg_execute_ex()
|
H A D | phpdbg.c | 574 zend_hash_add_empty_element(files, zval_get_string(filename)); in PHP_FUNCTION()
|
/PHP-8.0/ext/pdo/ |
H A D | pdo_sql_parser.re | 296 buf = zval_get_string(parameter);
|
/PHP-8.0/ext/session/ |
H A D | session.c | 1738 lifetime = zval_get_string(value); in PHP_FUNCTION() 1741 path = zval_get_string(value); in PHP_FUNCTION() 1744 domain = zval_get_string(value); in PHP_FUNCTION() 1755 samesite = zval_get_string(value); in PHP_FUNCTION()
|
/PHP-8.0/ext/xsl/ |
H A D | xsltprocessor.c | 735 RETURN_STR(zval_get_string(value)); in PHP_METHOD()
|
/PHP-8.0/ext/dba/ |
H A D | dba.c | 562 ZVAL_STR(&args[i], zval_get_string(&args[i])); in php_dba_open()
|
/PHP-8.0/ext/soap/ |
H A D | soap.c | 668 faultcode_val = zval_get_string(faultcode); in PHP_METHOD() 669 faultstring_val = zval_get_string(faultstring); in PHP_METHOD() 670 file_val = zval_get_string(file); in PHP_METHOD() 1189 …zend_string *msg = zval_get_string(zend_read_property(zend_ce_error, Z_OBJ(exception_object), "mes… in _soap_server_exception() 2237 …msg = zval_get_string(zend_read_property(zend_ce_error, Z_OBJ(exception_object), "message", sizeof…
|
/PHP-8.0/ext/zlib/ |
H A D | zlib.c | 816 *++ptr = zval_get_string(cur); in zlib_create_dictionary_string()
|
/PHP-8.0/ext/spl/ |
H A D | spl_iterators.c | 1831 subject = zval_get_string(&intern->current.key); in PHP_METHOD() 1836 subject = zval_get_string(&intern->current.data); in PHP_METHOD()
|
/PHP-8.0/ext/opcache/Optimizer/ |
H A D | zend_optimizer.c | 109 ZVAL_STR(result, zval_get_string(op1)); in zend_optimizer_eval_cast()
|
H A D | sccp.c | 619 value_str = zval_get_string(value); in ct_eval_assign_dim()
|
/PHP-8.0/ext/sqlite3/ |
H A D | sqlite3.c | 1556 buffer = zval_get_string(parameter); in php_sqlite3_bind_params()
|