Home
last modified time | relevance | path

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

12

/PHP-8.2/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.2/ext/com_dotnet/tests/
H A Dbug79248.phpt8 foreach ($v as $el) {
9 var_dump($el);
/PHP-8.2/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.c47 mysqlnd_minfo_dump_loaded_plugins(zval *el, void * buf) in mysqlnd_minfo_dump_loaded_plugins() argument
50 struct st_mysqlnd_plugin_header * plugin_header = (struct st_mysqlnd_plugin_header *)Z_PTR_P(el); in mysqlnd_minfo_dump_loaded_plugins()
/PHP-8.2/ext/imap/
H A Dconfig.m4127 el[]IMAP_INC_CHK(/include/c-client)
128 el[]IMAP_INC_CHK(/include/imap)
129 el[]IMAP_INC_CHK(/include)
130 el[]IMAP_INC_CHK(/imap)
131 el[]IMAP_INC_CHK(/c-client)
/PHP-8.2/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.2/ext/sockets/
H A Dsendrecvmsg.c85 static void ancillary_registery_free_elem(zval *el) { in ancillary_registery_free_elem() argument
86 pefree(Z_PTR_P(el), 1); in ancillary_registery_free_elem()
/PHP-8.2/main/
H A Drfc1867.c185 static void free_filename(zval *el) { in free_filename() argument
186 zend_string *filename = Z_STR_P(el); in free_filename()
192 zval *el; in destroy_uploaded_files_hash() local
194 ZEND_HASH_MAP_FOREACH_VAL(SG(rfc1867_uploaded_files), el) { in destroy_uploaded_files_hash()
195 zend_string *filename = Z_STR_P(el); in destroy_uploaded_files_hash()
/PHP-8.2/ext/spl/
H A Dspl_observer.c120 spl_SplObjectStorageElement *el = Z_PTR_P(element); in spl_object_storage_dtor() local
121 if (el) { in spl_object_storage_dtor()
122 zend_object_release(el->obj); in spl_object_storage_dtor()
123 zval_ptr_dtor(&el->inf); in spl_object_storage_dtor()
124 efree(el); in spl_object_storage_dtor()
/PHP-8.2/ext/soap/
H A Dphp_encoding.c1246 zval *el; in model_to_zval_any() local
1248 if (Z_TYPE_P(el) != IS_ARRAY) { in model_to_zval_any()
1252 el = &arr; in model_to_zval_any()
1254 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.2/Zend/
H A Dzend_constants.c84 static int clean_module_constant(zval *el, void *arg) in clean_module_constant() argument
86 zend_constant *c = (zend_constant *)Z_PTR_P(el); in clean_module_constant()
H A Dzend_ini.c42 static int zend_remove_ini_entries(zval *el, void *arg) /* {{{ */ in zend_remove_ini_entries() argument
44 zend_ini_entry *ini_entry = (zend_ini_entry *)Z_PTR_P(el); in zend_remove_ini_entries()
H A Dzend_compile.c6694 zend_ast *el = group->child[i]; in zend_compile_attributes() local
6696 if (el->child[1] && in zend_compile_attributes()
6697 el->child[1]->kind == ZEND_AST_CALLABLE_CONVERT) { in zend_compile_attributes()
6702 zend_string *name = zend_resolve_class_name_ast(el->child[0]); in zend_compile_attributes()
6704 zend_ast_list *args = el->child[1] ? zend_ast_get_list(el->child[1]) : NULL; in zend_compile_attributes()
10665 zval *el; in zend_eval_const_expr() local
10668 if (el) { in zend_eval_const_expr()
10669 ZVAL_COPY(&result, el); in zend_eval_const_expr()
10674 el = zend_symtable_find(Z_ARR_P(container), Z_STR_P(dim)); in zend_eval_const_expr()
10675 if (el) { in zend_eval_const_expr()
[all …]
/PHP-8.2/ext/pdo/
H A Dpdo_dbh.c1217 static void cls_method_dtor(zval *el) /* {{{ */ { in cls_method_dtor() argument
1218 zend_function *func = (zend_function*)Z_PTR_P(el); in cls_method_dtor()
1229 static void cls_method_pdtor(zval *el) /* {{{ */ { in cls_method_pdtor() argument
1230 zend_function *func = (zend_function*)Z_PTR_P(el); in cls_method_pdtor()
H A Dpdo_sql_parser.re78 static void free_param_name(zval *el) {
79 zend_string_release(Z_PTR_P(el));
/PHP-8.2/ext/dba/
H A Ddba.c296 int dba_close_pe_rsrc_deleter(zval *el, void *pDba) in dba_close_pe_rsrc_deleter() argument
298 if (Z_RES_P(el)->ptr == pDba) { in dba_close_pe_rsrc_deleter()
299 if (Z_DELREF_P(el) == 0) { in dba_close_pe_rsrc_deleter()
/PHP-8.2/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.2/main/streams/
H A Dstreams.c67 static int forget_persistent_resource_id_numbers(zval *el) in forget_persistent_resource_id_numbers() argument
70 zend_resource *rsrc = Z_RES_P(el); in forget_persistent_resource_id_numbers()
94 zval *el; in PHP_RSHUTDOWN_FUNCTION() local
96 ZEND_HASH_FOREACH_VAL(&EG(persistent_list), el) { in PHP_RSHUTDOWN_FUNCTION()
97 forget_persistent_resource_id_numbers(el); in PHP_RSHUTDOWN_FUNCTION()
/PHP-8.2/ext/mysqli/
H A Dmysqli.c86 static void free_prop_handler(zval *el) { in free_prop_handler() argument
87 pefree(Z_PTR_P(el), 1); in free_prop_handler()
/PHP-8.2/ext/xmlreader/
H A Dphp_xmlreader.c438 static void php_xmlreader_free_prop_handler(zval *el) /* {{{ */ { in php_xmlreader_free_prop_handler() argument
439 pefree(Z_PTR_P(el), 1); in php_xmlreader_free_prop_handler()
/PHP-8.2/sapi/litespeed/
H A Dlsapi_main.c826 static void user_config_cache_entry_dtor(zval *el) in user_config_cache_entry_dtor() argument
828 user_config_cache_entry *entry = (user_config_cache_entry *)Z_PTR_P(el); in user_config_cache_entry_dtor()
/PHP-8.2/ext/mbstring/
H A Dphp_mbregex.c68 static void php_mb_regex_free_cache(zval *el) { in php_mb_regex_free_cache() argument
69 onig_free((php_mb_regex_t *)Z_PTR_P(el)); in php_mb_regex_free_cache()
/PHP-8.2/ext/fileinfo/libmagic/
H A Dapprentice.c2236 char *el; in parse_strength() local
2265 factor = strtoul(l, &el, 0); in parse_strength()
2270 if (*el && !isspace(CAST(unsigned char, *el))) { in parse_strength()
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_main.c173 static void user_config_cache_entry_dtor(zval *el) in user_config_cache_entry_dtor() argument
175 user_config_cache_entry *entry = (user_config_cache_entry *)Z_PTR_P(el); in user_config_cache_entry_dtor()
/PHP-8.2/ext/snmp/
H A Dsnmp.c1970 static void free_php_snmp_properties(zval *el) /* {{{ */ in free_php_snmp_properties() argument
1972 pefree(Z_PTR_P(el), 1); in free_php_snmp_properties()

Completed in 144 milliseconds

12