Home
last modified time | relevance | path

Searched refs:sxe (Results 26 – 50 of 63) sorted by relevance

123

/php-src/ext/simplexml/tests/
H A Dprofile12.phpt23 $sxe = simplexml_load_string($xml);
24 $nsl = $sxe->getNamespaces();
27 $sxe = simplexml_load_string($xml, NULL, 0, $nsl['soap']);
28 var_dump($sxe->Body);
29 var_dump($sxe->Body->children(''));
30 var_dump($sxe->Body->children('')->businessList);
H A Dbug52751.phpt17 $sxe = simplexml_load_string($xml);
20 $sxe->xpath('//bar')
24 $sxe->xpath('//processing-instruction(\'baz\')')
27 foreach ($sxe->xpath('//processing-instruction()') as $pi) {
H A Dgh12169.phpt15 $sxe = simplexml_load_string($xml);
17 var_dump($sxe->xpath("//comment()")[0]->getName());
18 var_dump((string) $sxe->xpath("//comment()")[0]);
H A D022.phpt13 $sxe = simplexml_load_string($xml);
16 var_dump($sxe->content);
19 var_dump($sxe->content->file);
22 foreach($sxe->content->file as $file)
H A Dgh12167.phpt15 $sxe = simplexml_load_string($xml);
17 var_dump($sxe->xpath("//processing-instruction()")[0]->getName());
18 var_dump((string) $sxe->xpath("//processing-instruction()")[0]);
H A D023.phpt18 $sxe = simplexml_load_string($xml);
20 var_dump($sxe);
21 var_dump($sxe['attr']);
H A Dsxe_001.phpt11 <!DOCTYPE sxe SYSTEM "notfound.dtd">
12 <sxe id="elem1">
23 </sxe>
H A Dbug12170.phpt17 $sxe = simplexml_load_string($xml);
20 $sxe->xpath('//bar')
23 foreach ($sxe->xpath('//comment()') as $comment) {
H A D010.phpt14 <!DOCTYPE sxe SYSTEM "notfound.dtd">
15 <sxe id="elem1">
26 </sxe>
H A Dgh12223.phpt18 $sxe = simplexml_load_string($xml);
20 var_dump($sxe);
21 print_r($sxe);
H A Diterator_interaction_empty_and_var_dump.phpt14 $sxe = simplexml_load_string($xml);
18 $first = $sxe->first;
26 $first = $sxe->first;
H A D037.phpt9 $sxe = new SimpleXmlElement($str);
10 var_dump($sxe instanceof Countable);
H A D013.phpt13 $sxe = simplexml_load_string($xml);
15 var_dump((string)$sxe);
H A Dbug27010.phpt17 $sxe = simplexml_load_string($xml);
19 foreach ($sxe as $element_name => $element) {
23 foreach ($sxe->children('http://www.example.com/hot') as $element_name => $element) {
H A D003.phpt10 <!DOCTYPE sxe SYSTEM "notfound.dtd" [
13 <sxe id="elem1">
26 </sxe>
H A Dbug48601.phpt8 $sxe = simplexml_load_string('<root><node1>1</node1></root>');
10 $nodes = $sxe->xpath("/root/node2/@test");
H A D036.phpt15 $sxe = new SXE($str);
16 var_dump(count($sxe));
H A Dsxe_004.phpt11 <!DOCTYPE sxe SYSTEM "notfound.dtd">
12 <sxe id="elem1">
33 </sxe>
75 $sxe = new SXETest($xml);
76 $rit = new RecursiveIteratorIterator($sxe, RecursiveIteratorIterator::SELF_FIRST);
H A Dget_prop_address_not_initialized.phpt9 $sxe = $rc->newInstanceWithoutConstructor();
10 $sxe->a['b'] = 'b';
H A DSimpleXMLElement_asXML_fragment_filename.phpt8 $sxe = simplexml_load_string(<<<XML
16 $sxe->container2->asXML(__DIR__."/SimpleXMLElement_asXML_fragment_filename_output.tmp");
/php-src/ext/dom/tests/modern/xml/
H A Dsimplexml_interop.phpt9 $sxe = simplexml_load_string('<container xmlns="urn:a">foo</container>');
11 $element = DOM\import_simplexml($sxe);
18 $sxe->addChild('name', 'value');
23 dom_import_simplexml($sxe);
29 var_dump(DOM\import_simplexml($sxe) === $element);
/php-src/ext/xmlwriter/tests/
H A DOO_008.phpt12 $xw->writeDtdElement('sxe', '(elem1+, elem11, elem22*)');
13 $xw->writeDtdAttlist('sxe', 'id CDATA #implied');
28 <!ELEMENT sxe (elem1+, elem11, elem22*)>
29 <!ATTLIST sxe id CDATA #implied>
H A D008.phpt15 xmlwriter_write_dtd_element($xw, 'sxe', '(elem1+, elem11, elem22*)');
16 xmlwriter_write_dtd_attlist($xw, 'sxe', 'id CDATA #implied');
33 <!ELEMENT sxe (elem1+, elem11, elem22*)>
34 <!ATTLIST sxe id CDATA #implied>
/php-src/ext/simplexml/
H A Dphp_simplexml_exports.h49 php_sxe_object *sxe; member
52 PHP_SXE_API void php_sxe_rewind_iterator(php_sxe_object *sxe);
53 PHP_SXE_API void php_sxe_move_forward_iterator(php_sxe_object *sxe);
/php-src/ext/xsl/tests/
H A DtransformToDoc_class_exceptions.phpt10 $sxe = simplexml_load_file(__DIR__ . '/53965/collection.xml');
18 $processor->transformToDoc($sxe, NonExistent::class);
24 $processor->transformToDoc($sxe, DOMDocument::class);

Completed in 59 milliseconds

123