/php-src/ext/standard/tests/array/ |
H A D | bug35821.phpt | 6 class Element 13 public static function CallBack(Element $elem) 19 $arr = array(new Element(), new Element(), new Element()); 20 array_map(array('Element', 'CallBack'), $arr); 27 #0 %s(%d): Element->ThrowException() 28 #1 [internal function]: Element::CallBack(Object(Element))
|
H A D | array_pop_variation.phpt | 25 echo "\nCurrent Element is : "; 28 echo "\nNext Element is : "; 31 echo "\nNext Element is : "; 34 echo "\nPOPed Element is : "; 37 echo "\nCurrent Element after POP operation is: "; 45 Current Element is : int(1) 47 Next Element is : int(2) 49 Next Element is : int(3) 51 POPed Element is : int(9) 53 Current Element after POP operation is: int(1)
|
H A D | array_key_first_variation.phpt | 11 echo "\nCurrent Element is : "; 14 echo "\nNext Element is : "; 20 echo "\nCurrent Element after array_key_first operation is: "; 28 Current Element is : int(1) 30 Next Element is : int(2) 34 Current Element after array_key_first operation is: int(2)
|
H A D | array_key_last_variation.phpt | 11 echo "\nCurrent Element is : "; 14 echo "\nNext Element is : "; 20 echo "\nCurrent Element after array_key_last operation is: "; 28 Current Element is : int(1) 30 Next Element is : int(2) 34 Current Element after array_key_last operation is: int(2)
|
H A D | 005.phpt | 50 echo "\nCurrent Element is :"; 53 echo "\nNext Element is :"; 56 echo "\nNext Element is :"; 59 echo "\nshifted Element is :"; 62 echo "\nCurrent Element after shift operation is:"; 310 Current Element is :int(1) 312 Next Element is :int(2) 314 Next Element is :int(3) 316 shifted Element is :int(1) 318 Current Element after shift operation is:int(2)
|
H A D | array_shift_variation6.phpt | 24 echo "\n-- Element is referenced array --\n"; 57 -- Element is referenced array --
|
/php-src/ext/dom/tests/modern/html/parser/ |
H A D | HTMLDocument_fromString_line_column.phpt | 28 echo "Element: '", $element->tagName, "', ", $element->getLineNo(), "\n"; 47 Element: 'HTML', 1 48 Element: 'HEAD', 2 49 Element: 'TITLE', 3 50 Element: 'BODY', 5 51 Element: 'DIV', 6 52 Element: 'P', 7 53 Element: 'STRONG', 8
|
/php-src/ext/dom/tests/modern/css_selectors/ |
H A D | pseudo_classes_empty.phpt | 13 <p>Element with no content:</p> 16 <p>Element with comment:</p> 19 <p>Element with PI:</p> 22 <p>Element with CDATA:</p> 25 <p>Element with nested empty element:</p>
|
H A D | matches_invalid_selector.phpt | 2 Test DOM\Element::matches() method: invalid selector
|
H A D | closest_invalid_selector.phpt | 2 Test DOM\Element::closest() method: invalid selector
|
/php-src/ext/xmlreader/tests/ |
H A D | fromStream_legit_usage.phpt | 15 echo "Element: ", $reader->name, "\n"; 31 Element: root 33 Element: child
|
H A D | fromStream_broken_stream.phpt | 17 echo "Element: ", $reader->name, "\n"; 34 Element: root
|
/php-src/ext/dom/tests/ |
H A D | domelement.phpt | 75 echo 'Element Name: '.(($elem = $dom->getElementByID('n1'))?$elem->localName:'Not Found')."\n"; 78 echo 'Element Name: '.(($elem = $dom->getElementByID('n1'))?$elem->localName:'Not Found')."\n"; 80 echo 'Element Name: '.(($elem = $dom->getElementByID('n3'))?$elem->nodeName:'Not Found')."\n"; 85 echo 'Element Name: '.(($elem = $dom->getElementByID('n3'))?$elem->nodeName:'Not Found')."\n"; 110 Element Name: chapter 111 Element Name: Not Found 112 Element Name: newns2:myelement 113 Element Name: Not Found
|
H A D | register_node_class.phpt | 12 function testit() { return "HELLO Element"; } 38 HELLO Element
|
H A D | DOMElement_hasAttributes_basic.phpt | 42 Element should have attributes: 48 Element should have no attributes:
|
H A D | DOM4_DOMNode_ElementSiblings.phpt | 2 DOMNode: Element Siblings
|
H A D | DOMDocument_schemaValidateSource_error2.phpt | 22 Warning: DOMDocument::schemaValidateSource(): Element 'books': No matching global declaration avail…
|
/php-src/ext/dom/ |
H A D | php_dom.stub.php | 1399 public ?Element $parentElement; 1633 … public function insertAdjacentElement(AdjacentPosition $where, Element $element): ?Element {} 1641 public ?Element $firstElementChild; 1646 public ?Element $lastElementChild; 1707 class HTMLElement extends Element 1740 public ?Element $ownerElement; 1870 public ?Element $firstElementChild; 1875 public ?Element $lastElementChild; 1956 public ?Element $documentElement; 1991 public ?Element $lastElementChild; [all …]
|
/php-src/ext/dom/tests/modern/spec/ |
H A D | dump_attr.inc | 9 function dumpAttrs(DOM\Element $element) {
|
H A D | Element_removeAttribute_edge_cases.phpt | 2 Element::removeAttribute() edge cases
|
H A D | element_dump.inc | 2 function dumpElement(DOM\Element $element) {
|
/php-src/ext/simplexml/tests/ |
H A D | 021.phpt | 2 SimpleXML: Element check
|
H A D | bug40451.phpt | 22 Warning: SimpleXMLElement::addAttribute(): Unable to locate parent Element in %s on line %d
|
/php-src/ext/dom/tests/modern/xml/ |
H A D | Element_insertAdjacentHTML_errors.phpt | 2 Dom\Element::insertAdjacentHTML() with XML nodes - errors
|
H A D | XMLDocument_xpath.phpt | 74 …ell-defined in the living DOM specification. Use Dom\Element::getInScopeNamespaces() or Dom\Elemen…
|