/PHP-8.3/ext/dom/tests/ |
H A D | DOMNamedNodeMap_string_references.phpt | 11 $attributes = $dom->documentElement->attributes; 13 var_dump(isset($attributes['href']), $attributes['href']->value); 15 var_dump(isset($attributes['foo']), $attributes['foo']->value); 19 var_dump(isset($attributes[$ref]), $attributes[$ref]->value); 23 var_dump(isset($attributes[$ref]), $attributes[$ref]->value); 27 var_dump(isset($attributes[$ref]), $attributes[$ref]); 31 var_dump(isset($attributes[$ref]), $attributes[$ref]->value); 35 var_dump(isset($attributes[$ref]), $attributes[$ref]->value); 39 var_dump(isset($attributes[$ref]), $attributes[$ref]->value); 43 var_dump(isset($attributes[$ref]), $attributes[$ref]->value);
|
H A D | DOMElement_hasAttributes_basic.phpt | 24 echo "\nElement should have attributes:\n"; 33 echo "\nElement should have no attributes:\n"; 42 Element should have attributes: 48 Element should have no attributes:
|
H A D | DOMNamedNodeMap_count.phpt | 20 var_dump($root->attributes->length); 21 var_dump($root->attributes->count()); 22 var_dump(count($root->attributes));
|
H A D | DOMNamedNodeMap_edge_case_offset.phpt | 12 var_dump($root->attributes->length); 15 var_dump($root->attributes[-1]); 20 $root->attributes[][] = null;
|
/PHP-8.3/ext/simplexml/tests/ |
H A D | 024.phpt | 2 SimpleXML: XPath and attributes 38 ["@attributes"]=> 46 ["@attributes"]=> 54 ["@attributes"]=> 65 ["@attributes"]=> 73 ["@attributes"]=> 81 ["@attributes"]=> 92 ["@attributes"]=> 100 ["@attributes"]=> 108 ["@attributes"]=> [all …]
|
H A D | 033.phpt | 59 ["@attributes"]=> 67 ["@attributes"]=> 76 ["@attributes"]=> 86 ["@attributes"]=> 101 ["@attributes"]=> 109 ["@attributes"]=> 118 ["@attributes"]=> 128 ["@attributes"]=>
|
H A D | bug69169.phpt | 23 [@attributes] => Array 32 [@attributes] => Array 39 [@attributes] => Array 50 [@attributes] => Array 57 [@attributes] => Array
|
H A D | bug67116.phpt | 43 [@attributes] => Array 56 [@attributes] => Array 71 [@attributes] => Array 80 [@attributes] => Array
|
H A D | profile10.phpt | 2 SimpleXML [profile]: Accessing two attributes with the same name, but different namespaces 14 $rsattr = $root->child->attributes('reserved-ns'); 15 $spattr = $root->child->attributes('special-ns');
|
H A D | profile13.phpt | 43 ["@attributes"]=> 50 ["@attributes"]=> 59 ["@attributes"]=> 66 ["@attributes"]=>
|
H A D | profile12.phpt | 43 ["@attributes"]=> 50 ["@attributes"]=> 59 ["@attributes"]=> 66 ["@attributes"]=>
|
H A D | 000.phpt | 44 ["@attributes"]=> 55 ["@attributes"]=> 79 ["@attributes"]=> 91 ["@attributes"]=> 114 ["@attributes"]=> 126 ["@attributes"]=> 149 ["@attributes"]=> 189 ["@attributes"]=>
|
H A D | 022.phpt | 34 ["@attributes"]=> 43 ["@attributes"]=> 51 ["@attributes"]=>
|
H A D | SimpleXMLElement_addAttribute_basic.phpt | 10 var_dump($simple->attributes()); 15 ["@attributes"]=>
|
H A D | bug46048.phpt | 2 Bug #46048 (SimpleXML top-level @attributes not part of iterator) 18 [@attributes] => Array
|
/PHP-8.3/Zend/tests/traits/ |
H A D | bug60717.phpt | 11 function attributes(array $attributes = null); 12 function textArea(?array $attributes, $value); 22 function textArea(?array $attributes, $value) {} 23 abstract function attributes(array $attributes = null); 29 function attributes(array $attributes = null) { }
|
/PHP-8.3/ext/ldap/tests/ |
H A D | ldap_explode_dn.phpt | 8 /* Explode with attributes */ 11 /* Explode with attributes */ 14 /* Explode without attributes */ 17 /* Explode without attributes */ 20 /* Explode with attributes and < > characters */ 23 /* Explode without attributes and < > characters */ 26 /* Bad DN value with attributes */ 29 /* Bad DN value without attributes */
|
/PHP-8.3/Zend/ |
H A D | zend_attributes.c | 155 if (attributes) { in get_attribute() 158 ZEND_HASH_PACKED_FOREACH_PTR(attributes, attr) { in get_attribute() 170 if (attributes) { in get_attribute_str() 173 ZEND_HASH_PACKED_FOREACH_PTR(attributes, attr) { in get_attribute_str() 185 return get_attribute(attributes, lcname, 0); in zend_get_attribute() 190 return get_attribute_str(attributes, str, len, 0); in zend_get_attribute_str() 195 return get_attribute(attributes, lcname, offset + 1); in zend_get_parameter_attribute() 251 ZEND_HASH_PACKED_FOREACH_PTR(attributes, other) { in zend_is_attribute_repeated() 287 if (*attributes == NULL) { in zend_add_attribute() 312 zend_hash_next_index_insert_ptr(*attributes, attr); in zend_add_attribute() [all …]
|
H A D | zend_attributes.h | 70 ZEND_API zend_attribute *zend_get_attribute(HashTable *attributes, zend_string *lcname); 71 ZEND_API zend_attribute *zend_get_attribute_str(HashTable *attributes, const char *str, size_t len); 73 ZEND_API zend_attribute *zend_get_parameter_attribute(HashTable *attributes, zend_string *lcname, u… 74 ZEND_API zend_attribute *zend_get_parameter_attribute_str(HashTable *attributes, const char *str, s… 79 ZEND_API bool zend_is_attribute_repeated(HashTable *attributes, zend_attribute *attr); 86 HashTable **attributes, zend_string *name, uint32_t argc, 96 return zend_add_attribute(&ce->attributes, name, argc, flags, 0, 0); in END_EXTERN_C() 102 return zend_add_attribute(&func->common.attributes, name, argc, flags, 0, 0); in zend_add_function_attribute() 108 return zend_add_attribute(&func->common.attributes, name, argc, flags, offset + 1, 0); in zend_add_parameter_attribute() 114 return zend_add_attribute(&info->attributes, name, argc, flags, 0, 0); in zend_add_property_attribute() [all …]
|
/PHP-8.3/Zend/tests/attributes/ |
H A D | 002_rfcexample.phpt | 27 $attributes = $reflectionClass->getAttributes(); 29 var_dump($attributes[0]->getName()); 30 var_dump($attributes[0]->getArguments()); 31 var_dump($attributes[0]->newInstance());
|
H A D | 007_self_reflect_attribute.phpt | 2 Attributes: attributes on Attribute return itself 7 $attributes = $reflection->getAttributes(); 9 foreach ($attributes as $attribute) {
|
/PHP-8.3/ext/opcache/tests/opt/ |
H A D | block_pass_002.phpt | 11 function foo($key, $value, array $attributes) { 13 ? [$key, array_merge($value, $attributes)] 14 : [$value, $attributes];
|
/PHP-8.3/ext/dom/tests/gh11830/ |
H A D | attribute_variation.phpt | 16 $doc->documentElement->firstElementChild->prepend($doc->documentElement->attributes[0]); 22 $doc->documentElement->firstElementChild->append($doc->documentElement->attributes[0]); 28 $doc->documentElement->firstElementChild->before($doc->documentElement->attributes[0]); 34 $doc->documentElement->firstElementChild->after($doc->documentElement->attributes[0]); 40 $doc->documentElement->firstElementChild->replaceWith($doc->documentElement->attributes[0]);
|
/PHP-8.3/ext/xml/ |
H A D | compat.c | 59 if (attributes) { in _start_element_handler() 60 while (attributes[attno] != NULL) { in _start_element_handler() 64 att_name = (char *)attributes[attno++]; in _start_element_handler() 137 if (attributes) { in _start_element_handler_ns() 142 att_name = (char *) attributes[y++]; in _start_element_handler_ns() 143 att_prefix = (char *)attributes[y++]; in _start_element_handler_ns() 145 att_value = (char *)attributes[y++]; in _start_element_handler_ns() 170 if (attributes != NULL) { in _start_element_handler_ns() 176 if (attributes[y+1] != NULL) { in _start_element_handler_ns() 177 _qualify_namespace(parser, attributes[y] , attributes[y + 2], &qualified_name_attr); in _start_element_handler_ns() [all …]
|
/PHP-8.3/.github/ISSUE_TEMPLATE/ |
H A D | bug_report.yml | 6 attributes: 26 attributes: 33 attributes:
|