Home
last modified time | relevance | path

Searched refs:body (Results 1 – 25 of 157) sorted by relevance

1234567

/PHP-8.0/sapi/fpm/tests/
H A Dstatus.inc54 if ($body === null) {
65 * @param string $body
76 string $body,
110 var_dump($body);
119 * @param string $body
130 * @param string $body
143 $body,
154 * @param string $body
160 $body,
177 * @param string $body
[all …]
H A Dresponse.inc63 * @param mixed $body
68 public function expectBody($body, $contentType = 'text/html')
70 if ($multiLine = is_array($body)) {
71 $body = implode("\n", $body);
77 $body !== $this->rawBody
81 "==> The expected body:\n$body\n" .
82 "==> does not match the actual body:\n$this->rawBody"
86 "The expected body '$body' does not match actual body '$this->rawBody'"
148 * Get response body.
164 * Print raw body.
[all …]
/PHP-8.0/ext/tidy/tests/
H A D028.phpt7 $x = tidy_parse_string("<body><div>Content</div></body>");
8 var_dump($x->body()->child[0]->name);
9 var_dump($x->body()->child[0]->getParent()->name);
14 string(4) "body"
H A D010.phpt2 Accessing root, body, html, and head nodes..
9 var_dump($a->body());
22 </body>
46 </body>
115 </body>
118 string(4) "body"
146 </body>
149 string(4) "body"
177 </body>
246 </body>
[all …]
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 D002.phpt16 <body>
17 </body>
H A D005-mb.phpt16 <body>
17 </body>
H A D005.phpt16 <body>
17 </body>
H A D009.phpt17 <body>
18 </body>
H A D003.phpt19 <body>
20 </body>
H A D017.phpt14 <body>
16 </body>
/PHP-8.0/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.phpt13 $doc->loadHTML("<html><body><p>Test<br></p></body></html>");
18 <html><body><p>Test<br></p></body></html>
H A DDOMDocument_validate_basic.phpt14 <!ELEMENT note (to,from,heading,body)>
18 <!ELEMENT body (#PCDATA)>
24 <body>Don't forget me this weekend</body>
H A Ddom005.phpt24 <html><head><title>Hello world</title></head><body>
27 </body></html>
30 <html><head><title>Hello world</title></head><body>
33 </body></html>
/PHP-8.0/ext/imap/tests/
H A Dbug35669.phpt15 $body[] = $multipart; //add multipart stuff
19 $body[] = $textpart; //add body part
29 $body[] = $plain; //next add plain text part
39 $body[] = $html;
41 echo imap_mail_compose($envelope, $body);
H A Dbug80215.phpt14 $body = [[
23 imap_mail_compose($envelope, $body);
24 var_dump($envelope, $body);
H A Dbug31142_1.phpt30 $body[1] = $part1;
31 $body[2] = $part2;
32 $body[3] = $part3;
34 echo imap_mail_compose($envelope, $body);
H A Dbug40854.phpt29 $body[1] = $part1;
30 $body[2] = $part2;
31 $body[3] = $part3;
33 echo imap_mail_compose($envelope, $body);
H A Dbug80710_1.phpt30 $body[1] = $part1;
31 $body[2] = $part2;
32 $body[3] = $part3;
34 echo imap_mail_compose($envelope, $body);
H A Dbug80710_2.phpt30 $body[1] = $part1;
31 $body[2] = $part2;
32 $body[3] = $part3;
34 echo imap_mail_compose($envelope, $body);
/PHP-8.0/ext/tokenizer/tests/
H A Dtoken_get_all_variation18.phpt16 <body>
18 </body>
38 <body>
40 </body>
/PHP-8.0/ext/standard/
H A Dphp_fopen_wrapper.c65 php_stream *body; member
86 php_stream_seek(input->body, 0, SEEK_END); in php_stream_input_read()
87 php_stream_write(input->body, buf, read_bytes); in php_stream_input_read()
91 if (!input->body->readfilters.head) { in php_stream_input_read()
94 php_stream_seek(input->body, input->position, SEEK_SET); in php_stream_input_read()
96 read = php_stream_read(input->body, buf, count); in php_stream_input_read()
127 if (input->body) { in php_stream_input_seek()
129 *newoffset = input->position = (input->body)->position; in php_stream_input_seek()
228 if ((input->body = SG(request_info).request_body)) { in php_stream_url_wrap_php()
229 php_stream_rewind(input->body); in php_stream_url_wrap_php()
[all …]
/PHP-8.0/Zend/tests/
H A Dflexible-nowdoc-error4.phpt2 Flexible nowdoc syntax error 4: not enough body indentation
14 Parse error: Invalid body indentation level (expecting an indentation level of at least 5) in %s on…

Completed in 39 milliseconds

1234567