/PHP-8.2/ext/soap/tests/bugs/ |
H A D | bug62900.phpt | 10 $wsdl_with_ns = <<<XML 14 <import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="bug62900.xsd" /> 18 XML; 20 $wsdl_without_ns = <<<XML 28 XML; 30 $xsd_with_wrong_ns = <<<XML 32 <xs:schema targetNamespace="http://www.w3.org/XML/1998/namespacex" xmlns:xs="http://www.w3.org/2001… 33 XML; 35 $xsd_without_ns = <<<XML 38 XML; [all …]
|
/PHP-8.2/ext/xmlreader/tests/ |
H A D | 001.phpt | 2 XMLReader: libxml2 XML Reader, string data 12 $reader->XML($xmlstring); 22 $reader->XML($xmlstring); 31 XMLReader::XML(): Argument #1 ($source) cannot be empty
|
H A D | bug42139.phpt | 2 Bug #42139 (XMLReader option constants are broken using XML()) 8 $xml = <<<XML 15 XML; 18 $reader->XML( $xml, NULL, LIBXML_NOENT);
|
H A D | 011.phpt | 2 XMLReader: libxml2 XML Reader, string data 16 $reader->XML($xmlstring); 24 $reader->XML($xmlstring);
|
/PHP-8.2/ext/simplexml/tests/ |
H A D | bug62639.phpt | 2 Bug #62639 (XML structure broken) 12 $xml1 = <<<XML 21 XML; 29 $xml2 = <<<XML 36 XML;
|
H A D | SimpleXMLElement_xpath.phpt | 2 Testing xpath() with invalid XML 7 // gracefully recover from parsing of invalid XML; not available in PHP 10 // we're not interested in checking concrete warnings regarding invalid XML
|
/PHP-8.2/ext/dom/tests/ |
H A D | DOMDocument_load_error2_pre2_11.phpt | 2 Test DOMDocument::load() detects not-well formed XML 26 Warning: DOMDocument::load%r(XML){0,1}%r(): AttValue: " or ' expected %s 28 Warning: DOMDocument::load%r(XML){0,1}%r(): attributes construct error %s 30 Warning: DOMDocument::load%r(XML){0,1}%r(): Couldn't find end of Start Tag book %s 32 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: books %s 34 Warning: DOMDocument::load%r(XML){0,1}%r(): Extra content at the end of the document %s
|
H A D | DOMDocument_loadXML_error2_pre2_11.phpt | 2 Test DOMDocument::loadXML() detects not-well formed XML 26 Warning: DOMDocument::load%r(XML){0,1}%r(): AttValue: " or ' expected %s 28 Warning: DOMDocument::load%r(XML){0,1}%r(): attributes construct error %s 30 Warning: DOMDocument::load%r(XML){0,1}%r(): Couldn't find end of Start Tag book %s 32 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: books %s 34 Warning: DOMDocument::load%r(XML){0,1}%r(): Extra content at the end of the document %s
|
H A D | xpath_domnamespacenode.phpt | 8 $xml = <<<'XML' 11 XML; 24 string(36) "http://www.w3.org/XML/1998/namespace" 32 string(36) "http://www.w3.org/XML/1998/namespace"
|
H A D | gh12616_3.phpt | 10 <<<XML 21 XML 65 string(36) "http://www.w3.org/XML/1998/namespace" 73 string(36) "http://www.w3.org/XML/1998/namespace" 84 string(36) "http://www.w3.org/XML/1998/namespace" 92 string(36) "http://www.w3.org/XML/1998/namespace" 102 string(36) "http://www.w3.org/XML/1998/namespace" 110 string(36) "http://www.w3.org/XML/1998/namespace" 121 string(36) "http://www.w3.org/XML/1998/namespace" 129 string(36) "http://www.w3.org/XML/1998/namespace"
|
H A D | bug79852.phpt | 8 $XML = <<< XML 14 XML; 17 $dom->loadXml($XML);
|
H A D | bug70359.phpt | 11 $dom->loadXML(<<<XML 14 XML); 21 $dom->loadXML(<<<XML 26 XML); 41 $dom->loadXML(<<<XML 46 XML);
|
H A D | DOMDocument_load_error1.phpt | 2 Test DOMDocument::load() detects not-well formed XML 26 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book … 28 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li… 30 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
|
H A D | DOMDocument_loadXML_error1.phpt | 2 Test DOMDocument::loadXML() detects not-well formed XML 26 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book … 28 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li… 30 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
|
H A D | bug54601.phpt | 7 $xml = <<< XML 9 <!DOCTYPE set PUBLIC "-//OASIS//DTD DocBook XML V5.0//EN" "http://www.docbook.org/xml/5.0/dtd/docbo… 14 XML;
|
H A D | domelement.phpt | 36 $node->setAttributeNS('http://www.w3.org/XML/1998/namespace', 'xml:lang', 'en'); 37 echo "Language: ".$node->getAttributeNS('http://www.w3.org/XML/1998/namespace', 'lang')."\n"; 38 echo 'Attribute xml:lang exists?: '.($node->hasAttributeNS('http://www.w3.org/XML/1998/namespace', … 40 $node->removeAttributeNS('http://www.w3.org/XML/1998/namespace', 'lang'); 41 echo "Language: ".$node->getAttributeNS('http://www.w3.org/XML/1998/namespace', 'lang')."\n"; 42 echo 'Attribute xml:lang exists?: '.($node->hasAttributeNS('http://www.w3.org/XML/1998/namespace', … 44 $lang = $dom->createAttributeNS('http://www.w3.org/XML/1998/namespace', 'xml:lang'); 48 echo "Language: ".$node->getAttributeNS('http://www.w3.org/XML/1998/namespace', 'lang')."\n"; 49 $lang = $node->getAttributeNodeNS('http://www.w3.org/XML/1998/namespace', 'lang');
|
H A D | bug47847.phpt | 2 Bug #47847 (importNode loses the namespace of an XML element) 10 $fromdom->loadXML(<<<XML 17 XML);
|
H A D | DOMDocument_loadXML_error1_gte2_12.phpt | 2 Test DOMDocument::loadXML() detects not-well formed XML 24 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book … 26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li…
|
H A D | DOMDocument_load_error1_gte2_12.phpt | 2 Test DOMDocument::load() detects not-well formed XML 24 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book … 26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li…
|
/PHP-8.2/ext/xml/tests/ |
H A D | bug32001.phpt | 170 XML Prologue: present 194 XML Prologue: present 218 XML Prologue: present 230 XML Prologue: present 254 XML Prologue: present 266 XML Prologue: present 290 XML Prologue: present 314 XML Prologue: present 338 XML Prologue: present 350 XML Prologue: present [all …]
|
H A D | bug50576.phpt | 8 $XML = <<<XML 15 XML; 19 xml_parse_into_struct($xml_parser, $XML, $vals, $index); 31 xml_parse($xml_parser, $XML);
|
H A D | bug71592.phpt | 7 // The tag mismatch at the end of the XML is on purpose, to make sure that the 9 $xml = <<<XML 18 XML;
|
/PHP-8.2/ext/xml/ |
H A D | config.m4 | 2 [whether to enable XML support], 4 [Disable XML support])], 10 [XML: use expat instead of libxml2])], 22 AC_MSG_ERROR([XML extension requires LIBXML extension, add --with-libxml])
|
/PHP-8.2/ext/xsl/tests/ |
H A D | xslt001.phpt | 2 Test 1: Transform To XML String 7 echo "Test 1: Transform To XML String"; 14 Test 1: Transform To XML String
|
/PHP-8.2/ext/dom/tests/gh11830/ |
H A D | document_variation.phpt | 8 $otherDoc->loadXML(<<<XML 11 XML); 16 $doc->loadXML(<<<XML 22 XML);
|