Home
last modified time | relevance | path

Searched refs:el (Results 1 – 25 of 38) sorted by relevance

12

/PHP-8.0/ext/standard/html_tables/
H A Dhtml_table_gen.php436 foreach ($dp as $el) {
437 if (count($el) == 3) {
438 $multicp_rows[$el[1]] = array();
442 foreach ($dp as $el) {
444 if (count($el) == 3)
445 $multicp_rows[$el[1]][$el[2]] = $el[0];
447 $multicp_rows[$el[1]]["default"] = $el[0];
520 foreach ($dp as $el) {
522 $s2 = (hexdec($el[1]) & 0xFC0) >> 6;
523 $s3 = hexdec($el[1]) & 0x3F;
[all …]
/PHP-8.0/ext/com_dotnet/tests/
H A Dbug79248.phpt10 foreach ($v as $el) {
11 var_dump($el);
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_plugin.c106 mysqlnd_plugin_end_apply_func(zval *el) in mysqlnd_plugin_end_apply_func() argument
108 struct st_mysqlnd_plugin_header * plugin_header = (struct st_mysqlnd_plugin_header *)Z_PTR_P(el); in mysqlnd_plugin_end_apply_func()
H A Dphp_mysqlnd.c44 mysqlnd_minfo_dump_loaded_plugins(zval *el, void * buf) in mysqlnd_minfo_dump_loaded_plugins() argument
47 struct st_mysqlnd_plugin_header * plugin_header = (struct st_mysqlnd_plugin_header *)Z_PTR_P(el); in mysqlnd_minfo_dump_loaded_plugins()
/PHP-8.0/ext/imap/
H A Dconfig.m4115 el[]IMAP_INC_CHK(/include/c-client)
116 el[]IMAP_INC_CHK(/include/imap)
117 el[]IMAP_INC_CHK(/include)
118 el[]IMAP_INC_CHK(/imap)
119 el[]IMAP_INC_CHK(/c-client)
/PHP-8.0/ext/intl/transliterator/
H A Dtransliterator_methods.c240 zend_string *el = intl_convert_utf16_to_utf8(elem, elem_len, &status ); in PHP_FUNCTION() local
242 if( !el ) in PHP_FUNCTION()
248 add_next_index_str( return_value, el); in PHP_FUNCTION()
/PHP-8.0/ext/sockets/
H A Dsendrecvmsg.c87 static void ancillary_registery_free_elem(zval *el) { in ancillary_registery_free_elem() argument
88 pefree(Z_PTR_P(el), 1); in ancillary_registery_free_elem()
/PHP-8.0/main/
H A Drfc1867.c186 static void free_filename(zval *el) { in free_filename() argument
187 zend_string *filename = Z_STR_P(el); in free_filename()
193 zval *el; in destroy_uploaded_files_hash() local
195 ZEND_HASH_FOREACH_VAL(SG(rfc1867_uploaded_files), el) { in destroy_uploaded_files_hash()
196 zend_string *filename = Z_STR_P(el); in destroy_uploaded_files_hash()
/PHP-8.0/ext/soap/
H A Dphp_encoding.c1250 zval *el; in model_to_zval_any() local
1252 if (Z_TYPE_P(el) != IS_ARRAY) { in model_to_zval_any()
1256 el = &arr; in model_to_zval_any()
1258 add_next_index_zval(el, &val); in model_to_zval_any()
2267 zval *el; in to_xml_array() local
2285 el = data; in to_xml_array()
2287 if (el != NULL && Z_TYPE_P(el) == IS_ARRAY && in to_xml_array()
2289 ZEND_HASH_FOREACH_VAL_IND(Z_ARRVAL_P(el), el) { in to_xml_array()
2292 ZVAL_DEREF(el); in to_xml_array()
2293 if (Z_TYPE_P(el) == IS_ARRAY) { in to_xml_array()
[all …]
/PHP-8.0/Zend/
H A Dzend_constants.c83 static int clean_module_constant(zval *el, void *arg) in clean_module_constant() argument
85 zend_constant *c = (zend_constant *)Z_PTR_P(el); in clean_module_constant()
H A Dzend_ini.c35 static int zend_remove_ini_entries(zval *el, void *arg) /* {{{ */ in zend_remove_ini_entries() argument
37 zend_ini_entry *ini_entry = (zend_ini_entry *)Z_PTR_P(el); in zend_remove_ini_entries()
H A Dzend_compile.c6262 zend_ast *el = group->child[i]; in zend_compile_attributes() local
6263 zend_string *name = zend_resolve_class_name_ast(el->child[0]); in zend_compile_attributes()
6264 zend_ast_list *args = el->child[1] ? zend_ast_get_list(el->child[1]) : NULL; in zend_compile_attributes()
6269 attributes, name, args ? args->children : 0, flags, offset, el->lineno); in zend_compile_attributes()
9884 zval *el; in zend_eval_const_expr() local
9886 el = zend_hash_index_find(Z_ARR_P(container), Z_LVAL_P(dim)); in zend_eval_const_expr()
9887 if (el) { in zend_eval_const_expr()
9888 ZVAL_COPY(&result, el); in zend_eval_const_expr()
9893 el = zend_symtable_find(Z_ARR_P(container), Z_STR_P(dim)); in zend_eval_const_expr()
9894 if (el) { in zend_eval_const_expr()
[all …]
/PHP-8.0/ext/spl/
H A Dspl_observer.c111 spl_SplObjectStorageElement *el = Z_PTR_P(element); in spl_object_storage_dtor() local
112 zval_ptr_dtor(&el->obj); in spl_object_storage_dtor()
113 zval_ptr_dtor(&el->inf); in spl_object_storage_dtor()
114 efree(el); in spl_object_storage_dtor()
/PHP-8.0/ext/pdo/
H A Dpdo_sql_parser.re80 static void free_param_name(zval *el) {
81 efree(Z_PTR_P(el));
H A Dpdo_dbh.c1178 static void cls_method_dtor(zval *el) /* {{{ */ { in cls_method_dtor() argument
1179 zend_function *func = (zend_function*)Z_PTR_P(el); in cls_method_dtor()
1187 static void cls_method_pdtor(zval *el) /* {{{ */ { in cls_method_pdtor() argument
1188 zend_function *func = (zend_function*)Z_PTR_P(el); in cls_method_pdtor()
/PHP-8.0/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp85 static void arg_types_dtor(zval *el) { in arg_types_dtor() argument
86 efree(Z_PTR_P(el)); in arg_types_dtor()
/PHP-8.0/ext/dba/
H A Ddba.c362 int dba_close_pe_rsrc_deleter(zval *el, void *pDba) in dba_close_pe_rsrc_deleter() argument
364 if (Z_RES_P(el)->ptr == pDba) { in dba_close_pe_rsrc_deleter()
365 if (Z_DELREF_P(el) == 0) { in dba_close_pe_rsrc_deleter()
/PHP-8.0/main/streams/
H A Dstreams.c65 static int forget_persistent_resource_id_numbers(zval *el) in forget_persistent_resource_id_numbers() argument
68 zend_resource *rsrc = Z_RES_P(el); in forget_persistent_resource_id_numbers()
92 zval *el; in PHP_RSHUTDOWN_FUNCTION() local
94 ZEND_HASH_FOREACH_VAL(&EG(persistent_list), el) { in PHP_RSHUTDOWN_FUNCTION()
95 forget_persistent_resource_id_numbers(el); in PHP_RSHUTDOWN_FUNCTION()
/PHP-8.0/ext/xmlreader/
H A Dphp_xmlreader.c440 static void php_xmlreader_free_prop_handler(zval *el) /* {{{ */ { in php_xmlreader_free_prop_handler() argument
441 pefree(Z_PTR_P(el), 1); in php_xmlreader_free_prop_handler()
/PHP-8.0/sapi/litespeed/
H A Dlsapi_main.c829 static void user_config_cache_entry_dtor(zval *el) in user_config_cache_entry_dtor() argument
831 user_config_cache_entry *entry = (user_config_cache_entry *)Z_PTR_P(el); in user_config_cache_entry_dtor()
/PHP-8.0/ext/mbstring/
H A Dphp_mbregex.c66 static void php_mb_regex_free_cache(zval *el) { in php_mb_regex_free_cache() argument
67 onig_free((php_mb_regex_t *)Z_PTR_P(el)); in php_mb_regex_free_cache()
/PHP-8.0/ext/mysqli/
H A Dmysqli.c84 static void free_prop_handler(zval *el) { in free_prop_handler() argument
85 pefree(Z_PTR_P(el), 1); in free_prop_handler()
/PHP-8.0/ext/fileinfo/libmagic/
H A Dapprentice.c2226 char *el; in parse_strength() local
2255 factor = strtoul(l, &el, 0); in parse_strength()
2260 if (*el && !isspace(CAST(unsigned char, *el))) { in parse_strength()
/PHP-8.0/sapi/fpm/fpm/
H A Dfpm_main.c171 static void user_config_cache_entry_dtor(zval *el) in user_config_cache_entry_dtor() argument
173 user_config_cache_entry *entry = (user_config_cache_entry *)Z_PTR_P(el); in user_config_cache_entry_dtor()
/PHP-8.0/ext/snmp/
H A Dsnmp.c1948 static void free_php_snmp_properties(zval *el) /* {{{ */ in free_php_snmp_properties() argument
1950 pefree(Z_PTR_P(el), 1); in free_php_snmp_properties()

Completed in 173 milliseconds

12