Home
last modified time | relevance | path

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

12

/php-src/ext/dom/tests/modern/extensions/
H A DElement_renaming_html_ns_01.phpt9 $el = $dom->createElementNS("http://www.w3.org/1999/xhtml", "foo:bar");
10 $el->rename("http://www.w3.org/1999/xhtml", "foo:baz");
11 var_dump($el->nodeName, $el->namespaceURI, $el->prefix);
14 $el = $dom->createElementNS("http://www.w3.org/1999/xhtml/", "foo:bar");
15 $el->rename("urn:x", "foo:baz");
16 var_dump($el->nodeName, $el->namespaceURI, $el->prefix);
H A DElement_renaming_html_ns_02.phpt9 $el = $dom->createElementNS("http://www.w3.org/1999/xhtml", "foo:bar");
11 $el->rename("urn:a", "foo:baz");
15 $el = $dom->createElementNS("urn:a", "foo:bar");
17 $el->rename("http://www.w3.org/1999/xhtml", "foo:baz");
/php-src/ext/dom/tests/modern/html/parser/
H A DElement_innerHTML.phpt9 $el = $dom->createElement('div');
10 $dom->appendChild($el);
11 $el->innerHTML = '<p>foo</p>';
13 $el->innerHTML = '</div>';
15 $el->innerHTML = '';
25 $el->innerHTML = $str;
30 $dom->appendChild($el);
31 $el->innerHTML = '<p>foo</p>';
36 $dom->appendChild($el);
37 $el->innerHTML = '<p>foo</p>';
[all …]
H A DHTMLDocument_createFromString_namespaced_attributes.phpt21 $el = $dom->getElementsByTagName($tag)[0];
22 foreach ($el->attributes as $attribute) {
/php-src/ext/dom/tests/modern/common/
H A Dserialize_entity_reference_in_attribute.phpt12 <root><el x="&foo;bar&foo;"/></root>
15 $el = $xml->documentElement->firstChild;
19 $html->append($html->importNode($el, true));
28 <root><el x="&foo;bar&foo;"/></root>
29 <el x="&foo;bar&foo;"></el>
/php-src/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-src/ext/com_dotnet/tests/
H A Dbug79248.phpt8 foreach ($v as $el) {
9 var_dump($el);
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Ddocument.c636 lxb_html_element_t *el;
1055 lxb_html_element_t *el;
1072 if (el != NULL && el->list != NULL) {
1091 lxb_html_element_t *el;
1151 lxb_html_element_t *el;
1164 if (el == NULL || el->list == NULL) {
1178 el->list->first = NULL;
1179 el->list->last = NULL;
1181 el->list = lxb_css_rule_declaration_list_destroy(el->list, true);
1244 el->list->last = NULL;
[all …]
/php-src/ext/pdo_firebird/
H A Dphp_pdo_firebird_int.h138 #define php_firebird_error_with_info(d,e,el,m,ml) php_firebird_set_error(d, NULL, e, el, m, ml) argument
139 #define php_firebird_error_stmt_with_info(s,e,el,m,ml) php_firebird_set_error(s->dbh, s, e, el, m, … argument
/php-src/ext/dom/tests/modern/xml/
H A DElement_innerHTML_writing.phpt9 $el = $dom->createElementNS('urn:a', 'root');
10 $dom->appendChild($el);
11 $el->innerHTML = '<p>foo</p><p xmlns="">bar</p>';
13 $el->innerHTML = '';
15 $el->innerHTML = '&amp;';
17 $el->innerHTML = '&lt;foo&gt;';
/php-src/ext/dom/tests/delayed_freeing/
H A Dnamespace_xmlns_declaration.phpt9 $doc->documentElement->appendChild($el = $doc->createElementNS('http://php.net', 'example'));
15 var_dump($el->namespaceURI);
/php-src/ext/dom/tests/modern/css_selectors/
H A Dclosest.phpt21 function test($el, $selector) {
23 var_dump($el->closest($selector)?->getAttribute('xml:id'));
/php-src/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-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Dnode.c725 lxb_dom_element_t *el = lxb_dom_interface_element(node); in lxb_dom_node_by_class_name_cb() local
727 if (el->attr_class == NULL in lxb_dom_node_by_class_name_cb()
728 || el->attr_class->value == NULL in lxb_dom_node_by_class_name_cb()
729 || el->attr_class->value->length < cb_ctx->value_length) in lxb_dom_node_by_class_name_cb()
734 const lxb_char_t *data = el->attr_class->value->data; in lxb_dom_node_by_class_name_cb()
735 size_t length = el->attr_class->value->length; in lxb_dom_node_by_class_name_cb()
741 lxb_dom_document_t *doc = el->node.owner_document; in lxb_dom_node_by_class_name_cb()
949 lxb_dom_element_t *el = lxb_dom_interface_element(node); in lxb_dom_node_by_attr_cb() local
951 attr = lxb_dom_element_attr_by_id(el, cb_ctx->name_id); in lxb_dom_node_by_attr_cb()
/php-src/ext/intl/transliterator/
H A Dtransliterator_methods.c237 zend_string *el = intl_convert_utf16_to_utf8(elem, elem_len, &status ); in PHP_FUNCTION() local
239 if( !el ) in PHP_FUNCTION()
245 add_next_index_str( return_value, el); in PHP_FUNCTION()
/php-src/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-src/main/
H A Drfc1867.c163 static void free_filename(zval *el) { in free_filename() argument
164 zend_string *filename = Z_STR_P(el); in free_filename()
170 zval *el; in destroy_uploaded_files_hash() local
172 ZEND_HASH_MAP_FOREACH_VAL(SG(rfc1867_uploaded_files), el) { in destroy_uploaded_files_hash()
173 zend_string *filename = Z_STR_P(el); in destroy_uploaded_files_hash()
/php-src/ext/spl/
H A Dspl_observer.c117 spl_SplObjectStorageElement *el = Z_PTR_P(element); in spl_object_storage_dtor() local
118 if (el) { in spl_object_storage_dtor()
119 zend_object_release(el->obj); in spl_object_storage_dtor()
120 zval_ptr_dtor(&el->inf); in spl_object_storage_dtor()
121 efree(el); in spl_object_storage_dtor()
/php-src/ext/soap/
H A Dphp_encoding.c1290 zval *el; in model_to_zval_any() local
1292 if (Z_TYPE_P(el) != IS_ARRAY) { in model_to_zval_any()
1296 el = &arr; in model_to_zval_any()
1298 add_next_index_zval(el, &val); in model_to_zval_any()
2316 zval *el; in to_xml_array() local
2334 el = data; in to_xml_array()
2336 if (el != NULL && Z_TYPE_P(el) == IS_ARRAY && in to_xml_array()
2338 ZEND_HASH_FOREACH_VAL_IND(Z_ARRVAL_P(el), el) { in to_xml_array()
2341 ZVAL_DEREF(el); in to_xml_array()
2342 if (Z_TYPE_P(el) == IS_ARRAY) { in to_xml_array()
[all …]
/php-src/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()
/php-src/ext/pdo/
H A Dpdo_dbh.c1276 static void cls_method_dtor(zval *el) /* {{{ */ { in cls_method_dtor() argument
1277 zend_function *func = (zend_function*)Z_PTR_P(el); in cls_method_dtor()
1288 static void cls_method_pdtor(zval *el) /* {{{ */ { in cls_method_pdtor() argument
1289 zend_function *func = (zend_function*)Z_PTR_P(el); in cls_method_pdtor()
H A Dpdo_sql_parser.re60 static void free_param_name(zval *el) {
61 zend_string_release(Z_PTR_P(el));
/php-src/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-src/ext/mysqli/
H A Dmysqli.c85 static void free_prop_handler(zval *el) { in free_prop_handler() argument
86 pefree(Z_PTR_P(el), 1); in free_prop_handler()

Completed in 64 milliseconds

12