/php-src/ext/dom/tests/modern/extensions/ |
H A D | Element_renaming_html_ns_01.phpt | 9 $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 D | Element_renaming_html_ns_02.phpt | 9 $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 D | Element_innerHTML.phpt | 9 $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 D | HTMLDocument_createFromString_namespaced_attributes.phpt | 21 $el = $dom->getElementsByTagName($tag)[0]; 22 foreach ($el->attributes as $attribute) {
|
/php-src/ext/dom/tests/modern/common/ |
H A D | serialize_entity_reference_in_attribute.phpt | 12 <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/dom/tests/ |
H A D | gh16777_2.phpt | 7 $el = new DOMElement('name'); 8 $el->append($child = new DOMElement('child')); 10 $doc->appendChild($el); 11 $el->__construct('newname'); 12 $doc->appendChild($el); 16 $dom2->appendChild($el);
|
/php-src/ext/standard/html_tables/ |
H A D | html_table_gen.php | 436 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 D | bug79248.phpt | 8 foreach ($v as $el) { 9 var_dump($el);
|
/php-src/ext/pdo_firebird/ |
H A D | php_pdo_firebird_int.h | 132 #define php_firebird_error_with_info(d,e,el,m,ml) php_firebird_set_error(d, NULL, e, el, m, ml) argument 133 #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/lexbor/lexbor/html/interfaces/ |
H A D | document.c | 636 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/dom/tests/modern/xml/ |
H A D | Element_innerHTML_writing.phpt | 9 $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 = '&'; 17 $el->innerHTML = '<foo>';
|
/php-src/ext/dom/tests/delayed_freeing/ |
H A D | namespace_xmlns_declaration.phpt | 9 $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 D | closest.phpt | 21 function test($el, $selector) { 23 var_dump($el->closest($selector)?->getAttribute('xml:id'));
|
/php-src/ext/mysqlnd/ |
H A D | mysqlnd_plugin.c | 106 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 D | php_mysqlnd.c | 47 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 D | node.c | 725 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 D | transliterator_methods.c | 237 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 D | sendrecvmsg.c | 85 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 D | rfc1867.c | 163 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 D | spl_observer.c | 117 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 D | php_encoding.c | 1290 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() 2336 zval *el; in to_xml_array() local 2354 el = data; in to_xml_array() 2356 if (el != NULL && Z_TYPE_P(el) == IS_ARRAY && in to_xml_array() 2358 ZEND_HASH_FOREACH_VAL_IND(Z_ARRVAL_P(el), el) { in to_xml_array() 2361 ZVAL_DEREF(el); in to_xml_array() 2362 if (Z_TYPE_P(el) == IS_ARRAY) { in to_xml_array() [all …]
|
/php-src/Zend/ |
H A D | zend_constants.c | 93 static int clean_module_constant(zval *el, void *arg) in clean_module_constant() argument 95 zend_constant *c = (zend_constant *)Z_PTR_P(el); in clean_module_constant()
|
/php-src/ext/pdo/ |
H A D | pdo_dbh.c | 1308 static void cls_method_dtor(zval *el) /* {{{ */ { in cls_method_dtor() argument 1309 zend_function *func = (zend_function*)Z_PTR_P(el); in cls_method_dtor() 1320 static void cls_method_pdtor(zval *el) /* {{{ */ { in cls_method_pdtor() argument 1321 zend_function *func = (zend_function*)Z_PTR_P(el); in cls_method_pdtor()
|
H A D | pdo_sql_parser.re | 60 static void free_param_name(zval *el) { 61 zend_string_release(Z_PTR_P(el));
|
/php-src/ext/intl/msgformat/ |
H A D | msgformat_helpers.cpp | 85 static void arg_types_dtor(zval *el) { in arg_types_dtor() argument 86 efree(Z_PTR_P(el)); in arg_types_dtor()
|