Home
last modified time | relevance | path

Searched refs:body (Results 26 – 50 of 255) sorted by relevance

1234567891011

/php-src/sapi/fpm/tests/
H A Dlog-suppress-output-request-body.phpt2 FPM: Test URIs are not excluded from access log when there is a request body
15 $body = str_repeat('a', 100);
50 // Should not suppress POST with no body
57 // Should not suppress POST with body
60 stdin: $body
64 // Should not suppress GET with body
68 stdin: $body
72 // Should suppress GET with no body
78 // Should not suppress GET with no body but incorrect content length
85 // Should suppress GET with body but 0 content length (no stdin readable)
[all …]
/php-src/ext/dom/tests/modern/html/parser/
H A DHTMLDocument_fromString_old_dtd.phpt13 <body>
14 </body>
29 <body>
31 </body></html>
37 <body>
39 </body></html>
H A Dxml_style_namespace.phpt14 <body xmlns:foo="urn:hi">
16 </body>
22 foreach ($xpath->query("//*[name()='body']//*") as $node) {
44 <body xmlns:foo="urn:hi">
47 </body></html>
54 <body xmlns:foo="urn:hi">
57 </body></html>
H A DHTMLDocument_fromString_without_body.phpt2 Dom\HTMLDocument::createFromString() - document without body
13 <!DOCTYPE html><html><head></head><body><p align="'">foo '</p></body></html>
H A DHTMLDocument_createFromFile_createFromString_BOM_buffer_edge.phpt8 $header = "\xEF\xBB\xBF<!doctype html><html><body>";
9 $trailer = "</body></html>";
28body>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa…
H A DHTMLDocument_fromString_normal_no_error.phpt16 <body>
21 </body>
33 <body>
39 </body></html>
/php-src/ext/dom/tests/modern/html/serializer/
H A DHTMLDocument_serialize_text_03.phpt9 $body = $dom->appendChild($dom->createElement("body"));
11 $tag = $body->appendChild($dom->createElementNS("some:ns", $tag));
13 $body->append("\n");
19 <body><style>&amp;"&lt;&gt;&nbsp; foobar</style>
27 </body>
H A DHTMLDocument_serialize_doctype.phpt13 <body>
14 </body>
31 <body>
33 </body></html>
37 <body>
39 </body></html>
H A DElement_innerHTML.phpt8 …'<!DOCTYPE html><html><head><title>Test</title></head><body><div></div><p>Hello, World!</p></body>…
9 var_dump($dom->getElementsByTagName('body')[0]->innerHTML);
19 string(76) "<head><title>Test</title></head><body><div></div><p>Hello, World!</p></body>"
/php-src/ext/tidy/tests/
H A D011.phpt8 $body = $a->body();
9 var_dump($body->attribute);
10 foreach($body->attribute as $key=>$val) {
H A D025.phpt14 $tidy=tidy_parse_string('<html><body>text</body></html>');
17 $tidy=tidy_parse_string('<html><body><!-- comment --></body></html>', array('newline' => 'LF'));
H A Dsibling_nodes.phpt11 <body>
15 </body>
18 $body = $tidy->body();
25 foreach ($body->child as $i => $child) {
/php-src/ext/dom/tests/
H A Dbug69679.phpt8 … "<!DOCTYPE html><html><head><meta charset='UTF-8'></head><body>U+0000 <span>\x0</span></body></ht…
14 <html><head><meta charset="UTF-8"></head><body>U+0000 <span></span></body></html>
H A DDOMDocument_loadHTML_basic.phpt11 $doc->loadHTML("<html><body><p>Test<br></p></body></html>");
16 <html><body><p>Test<br></p></body></html>
H A Dbug77686.phpt9 $doc->loadHTML('<html id="htmlelement"><body id="x">before<div id="y">hello</div>after</body></html…
10 $body = $doc->getElementById('x');
15 $body->removeChild($div);
19 $body->appendChild($div);
30 $body->appendChild($new_element);
H A Dgh11289.phpt11 <body>
13 </body>
30 string(55) "<!DOCTYPE HTML><html><body> <p>Hi!</p></body></html>"
H A DDOMNode_DOMNameSpaceNode_isConnected.phpt9 $dom->loadXML('<!DOCTYPE html><html><head/><body/></html>');
13 $body = $head->nextSibling;
22 $body->appendChild($p);
23 var_dump($body->isConnected);
31 $body->remove();
34 var_dump($body->isConnected);
H A DDOMDocument_validate_basic.phpt12 <!ELEMENT note (to,from,heading,body)>
16 <!ELEMENT body (#PCDATA)>
22 <body>Don't forget me this weekend</body>
H A Dgh11290.phpt10 <body>
12 </body>
29 string(67) "<!DOCTYPE HTML><html><body> <p>Loremipsumdolor</p></body></html>"
/php-src/ext/dom/tests/modern/spec/
H A DDocument_getElementsByTagNameNS.phpt16 <body>
18 </body>
22 $body = $dom->getElementsByTagName('body')->item(0);
23 $body->appendChild(createElementNS($dom, NULL, "p", "content 1"));
24 $body->appendChild(createElementNS($dom, "", "p", "content 2"));
25 $body->appendChild(createElementNS($dom, "http://www.w3.org/2000/svg", "svg:svg", "content 3"));
H A DNode_insertBefore_02.phpt8 $dom = Dom\HTMLDocument::createFromString('<!DOCTYPE html><html><head></head><body></body></html>');
24 <!DOCTYPE html><html><head></head><body></body></html>
H A DNode_lookupPrefix.phpt12 <body>
17 </body>
21 $body = $dom->getElementsByTagName("body")[0];
22 $body->setAttribute("xmlns:a", "urn:a");
30 var_dump($body->lookupPrefix("urn:a"));
/php-src/ext/dom/tests/modern/html/encoding/
H A DHTMLDocument_GB18030.phpt30 <body>��</body></html>
36 <body>é</body></html>
H A DHTMLDocument_Shift_JIS.phpt30 <body>
32 ?</body></html>
38 <body>
40 é</body></html>
H A DHTMLDocument_UTF8_BOM.phpt31 <body>é</body></html>
38 <body>é</body></html>

Completed in 37 milliseconds

1234567891011