Home
last modified time | relevance | path

Searched refs:xml (Results 1 – 25 of 951) sorted by last modified time

12345678910>>...39

/PHP-7.4/
H A DNEWS101 . Fixed bug #79971 (special character is breaking the path in xml function).
931 . Fixed bug #79528 (Different object of the same xml between 7.4.5 and
H A Dconfigure.ac1145 … PEAR requires XML to be enabled. Add --enable-xml to the configure line. (or --without-pear)"
H A Drun-tests.php3352 $xml = '<' . '?' . 'xml version="1.0" encoding="UTF-8"' . '?' . '>' . PHP_EOL;
3353 $xml .= sprintf(
3362 $xml .= junit_get_suite_xml();
3363 $xml .= '</testsuites>';
3364 fwrite($JUNIT['fp'], $xml);
H A Dphp.ini-development1684 ; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
H A Dphp.ini-production1684 ; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
/PHP-7.4/ext/dom/tests/
H A Dbug79971_2.phpt2 Bug #79971 (special character is breaking the path in xml function)
15 $uri = "file://$path/bug79971_2.xml";
H A Dbug43364.phpt2 Bug #43364 (recursive xincludes don't remove internal xml nodes properly)
21 $xml = <<<DOC
22 <?xml version="1.0" encoding="UTF-8"?>
34 $doc->loadXml($xml);
H A DDOMDocument_loadXML_error1.phpt6 - XML_FILE: the xml file to load
16 XML_FILE=/not_well_formed.xml
H A DDOMDocument_load_error1.phpt6 - XML_FILE: the xml file to load
16 XML_FILE=/not_well_formed.xml
/PHP-7.4/ext/simplexml/tests/
H A Dbug79971_1.phpt2 Bug #79971 (special character is breaking the path in xml function)
14 $uri = "file://$path/bug79971_1.xml";
23 Warning: simplexml_load_file(): I/O warning : failed to load external entity "%s/bug79971_1.xml%00f…
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc509 $formats = ['plain', 'html', 'xml', 'json']
H A Dstatus.inc15 'xml' => 'text/xml',
137 "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n" .
152 * Check xml status page.
163 "<\?xml version=\"1.0\" \?>\n<status>\n",
/PHP-7.4/ext/xml/tests/
H A Dbug70962.phpt5 if (!extension_loaded('xml')) die('skip xml extension not available');
9 function parseAndOutput($xml)
14 xml_parse_into_struct($parser, $xml, $values);
19 $xml = "<a><b>&lt;d&gt;\n &lt;e&gt;</b><![CDATA[ ]]><c>\n \t</c></a>";
21 $parsed = parseAndOutput($xml);
H A Dbug73135.phpt4 <?php if (!extension_loaded('xml')) die('skip xml extension not loaded'); ?>
9 function start_elem($parser, $xml) {
10 xml_parse($parser, $xml);
13 $xml = <<<HERE
21 xml_parse($parser, $xml);
H A Dbug81351.phpt5 if (!extension_loaded('xml')) die("skip xml extension not available");
9 $xml = <<<XML
10 <?xml version="1.0" encoding="utf-8"?>
17 $success = xml_parse($parser, $xml, false);
/PHP-7.4/ext/xml/
H A Dxml.c56 ZEND_BEGIN_MODULE_GLOBALS(xml) in ZEND_BEGIN_MODULE_GLOBALS() argument
58 ZEND_END_MODULE_GLOBALS(xml)
60 ZEND_DECLARE_MODULE_GLOBALS(xml)
130 ZEND_GET_MODULE(xml)
140 PHP_MINIT_FUNCTION(xml);
141 PHP_MINFO_FUNCTION(xml);
142 static PHP_GINIT_FUNCTION(xml);
351 PHP_GINIT(xml), /* globals ctor */
375 static PHP_GINIT_FUNCTION(xml) in PHP_GINIT_FUNCTION() argument
400 PHP_MINIT_FUNCTION(xml) in PHP_MINIT_FUNCTION() argument
[all …]
/PHP-7.4/ext/libxml/tests/
H A Dlibxml_disable_entity_loader_2.phpt11 $xml = <<<EOT
12 <?xml version="1.0" encoding="UTF-8"?>
18 $xml = str_replace('XXE_URI', $dir . '/libxml_disable_entity_loader_payload.txt', $xml);
20 function parseXML($xml) {
25 $doc->loadXML($xml, 0);
29 var_dump(strpos(parseXML($xml), 'SECRET_DATA') !== false);
31 var_dump(strpos(parseXML($xml), 'SECRET_DATA') === false);
H A Dlibxml_disable_entity_loader.phpt12 $xml = <<<EOT
13 <?xml version="1.0" encoding="UTF-8"?>
19 $xml = str_replace('XXE_URI', $dir . '/libxml_disable_entity_loader_payload.txt', $xml);
21 function parseXML($xml) {
26 $doc->loadXML($xml, 0);
30 var_dump(strpos(parseXML($xml), 'SECRET_DATA') !== false);
32 var_dump(strpos(parseXML($xml), 'SECRET_DATA') === false);
H A Dbug51903.phpt14 . "Content-Type: text/xml; charset=ISO-8859-1\r\n\r\n"
15 . "<?xml version=\"1.0\"?>\n"
18 . "Content-Type: text/xml; charset=ISO-8859-1; foo=bar\r\n\r\n"
19 . "<?xml version=\"1.0\"?>\n"
22 . "Content-Type: text/xml; charset=\"ISO-8859-1\" ; foo=bar\r\n\r\n"
23 . "<?xml version=\"1.0\"?>\n"
/PHP-7.4/appveyor/
H A Dtest_task.bat100 set TEST_PHP_JUNIT=c:\junit.out.xml
/PHP-7.4/ext/xmlreader/tests/
H A Dbug73246.phpt11 $reader->XML('<?xml version="1.0"?><root/>', "UTF\0-8");
/PHP-7.4/ext/soap/
H A Dphp_encoding.c100 #define FIND_XML_NULL(xml,zval) \ argument
103 if (!xml) { \
107 if (xml->properties) { \
108 null = get_attribute(xml->properties, "nil"); \
116 #define CHECK_XML_NULL(xml) \ argument
119 if (!xml) { \
123 if (xml->properties) { \
124 null = get_attribute(xml->properties, "nil"); \
132 #define FIND_ZVAL_NULL(zval, xml, style) \ argument
136 set_xsi_nil(xml); \
[all …]
/PHP-7.4/ext/soap/tests/
H A Dbug69668.phpt25 <?xml version="1.0" encoding="UTF-8"?>
H A Dbug80672.phpt8 $client = new SoapClient(__DIR__ . "/bug80672.xml");
/PHP-7.4/azure/
H A Dcoverage_job.yml39 make gcovr-xml
40 mv gcovr.xml coverage.xml
46 summaryFileLocation: coverage.xml

Completed in 99 milliseconds

12345678910>>...39