Home
last modified time | relevance | path

Searched refs:r (Results 51 – 75 of 1568) sorted by relevance

12345678910>>...63

/PHP-7.4/ext/standard/tests/http/
H A Dhttp_response_header_02.phpt12 "data://text/plain,HTTP/1.0 302 Found\r\n"
13 . "Some: Header\r\nLocation: http://127.0.0.1:22347/try-again\r\n\r\n",
14 "data://test/plain,HTTP/1.0 200 Ok\r\nSome: Header\r\n\r\nBody",
H A Dbug43510.phpt12 "data://text/plain,HTTP/1.0 200 OK\r\n\r\n",
13 "data://text/plain,HTTP/1.0 200 OK\r\n\r\n",
18 foreach(array('r', 'rb') as $mode) {
29 string(1) "r"
H A Dhttp_response_header_03.phpt12 "data://text/plain,HTTP/1.0 302 Found\r\n"
13 . "Some: Header\r\nLocation: http://127.0.0.1:22348/try-again\r\n\r\n",
14 "data://test/plain,HTTP/1.0 404 Not Found\r\nSome: Header\r\n\r\nBody",
/PHP-7.4/ext/reflection/tests/
H A Dreflectionclass_for_traits.phpt8 $r = new ReflectionClass('T');
9 var_dump(Reflection::getModifierNames($r->getModifiers()));
10 var_dump($r->isAbstract());
11 var_dump($r->isInstantiable());
12 var_dump($r->isCloneable());
H A Dbug69802.phpt6 $r = new ReflectionMethod($f, '__invoke');
7 var_dump($r->getParameters()[0]->getName());
8 var_dump($r->getParameters()[0]->getClass());
9 echo $r->getParameters()[0], "\n";
10 echo $r->getReturnType()->getName(), "\n";
11 echo $r,"\n";
/PHP-7.4/ext/mbstring/tests/
H A Dmb_detect_order.phpt15 $r = mb_detect_order('auto');
16 ($r === TRUE) ? print "OK_AUTO\n" : print "NG_AUTO\n";
21 $r = mb_detect_order('SJIS,EUC-JP,JIS,UTF-8');
22 ($r === TRUE) ? print "OK_STR\n" : print "NG_STR\n";
31 $r = mb_detect_order($a);
32 ($r === TRUE) ? print "OK_ARRAY\n" : print "NG_ARRAY\n";
38 $r = mb_detect_order('BAD_NAME');
39 ($r === FALSE) ? print "OK_BAD_STR\n" : print "NG_BAD_STR\n";
43 $r = mb_detect_order($a);
44 ($r === FALSE) ? print "OK_BAD_ARRAY\n" : print "NG_BAD_ARRAY\n";
H A Dmb_ereg_search.phpt17 $r = mb_ereg_search();
19 if(!$r)
25 $r = mb_ereg_search_getregs(); //get first result
28 var_dump($r[0]);
29 $r = mb_ereg_search_regs();//get next result
31 while($r);
/PHP-7.4/ext/libxml/tests/
H A Dbug51903.phpt13 "data://text/plain,HTTP/1.1 200 OK\r\n"
14 . "Content-Type: text/xml; charset=ISO-8859-1\r\n\r\n"
17 "data://text/plain,HTTP/1.1 200 OK\r\n"
18 . "Content-Type: text/xml; charset=ISO-8859-1; foo=bar\r\n\r\n"
21 "data://text/plain,HTTP/1.1 200 OK\r\n"
22 . "Content-Type: text/xml; charset=\"ISO-8859-1\" ; foo=bar\r\n\r\n"
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug69139.phpt5 …tr = 'a:1126666:{i:0;r:1;i:-09610;r:1;i:-0;i:0;i:0;O:1:"A":2119X:i:0;i:0;i:0;i:0;i:0;O:1:"A":2116:…
/PHP-7.4/ext/dom/tests/
H A DDOMDocument_load_error1.phpt22 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book …
24 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li…
26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
H A DDOMDocument_loadXML_error1.phpt22 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book …
24 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li…
26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
/PHP-7.4/ext/oci8/tests/
H A Dbind_char_2_11gR1.phpt37 $r = oci_bind_by_name($s, ":bv", $bv1);
38 if ($r)
42 $r = oci_bind_by_name($s, ":bv", $bv1, -1, SQLT_AFC);
43 if ($r)
47 $r = oci_bind_by_name($s, ":bv", $bv1, 0, SQLT_AFC);
48 if ($r)
53 if ($r)
58 if ($r)
63 if ($r)
71 $r = @oci_execute($s);
[all …]
H A Dbind_char_2.phpt37 $r = oci_bind_by_name($s, ":bv", $bv1);
38 if ($r)
42 $r = oci_bind_by_name($s, ":bv", $bv1, -1, SQLT_AFC);
43 if ($r)
47 $r = oci_bind_by_name($s, ":bv", $bv1, 0, SQLT_AFC);
48 if ($r)
53 if ($r)
58 if ($r)
63 if ($r)
71 $r = @oci_execute($s);
[all …]
H A Dlob_043.phpt34 $r = array();
36 $r[] = $row['C1'];
39 return $r;
46 $r = array();
48 $r[] = $row['C1'];
51 return $r;
55 $r = f1($c);
57 foreach ($r as $v) {
63 $r = f2($c);
65 foreach ($r as $v) {
H A Dbind_char_3.phpt35 if ($r)
43 if ($r)
52 if ($r)
62 if ($r)
71 if ($r)
80 if ($r)
89 if ($r)
100 if ($r)
108 if ($r)
118 if ($r)
[all …]
H A Dbind_char_3_11gR1.phpt35 if ($r)
43 if ($r)
52 if ($r)
62 if ($r)
71 if ($r)
80 if ($r)
89 if ($r)
100 if ($r)
108 if ($r)
118 if ($r)
[all …]
H A Dbind_char_4.phpt37 if ($r)
45 if ($r)
54 if ($r)
64 if ($r)
73 if ($r)
82 if ($r)
91 if ($r)
102 if ($r)
110 if ($r)
120 if ($r)
[all …]
H A Dbind_char_4_11gR1.phpt37 if ($r)
45 if ($r)
54 if ($r)
64 if ($r)
73 if ($r)
82 if ($r)
91 if ($r)
102 if ($r)
110 if ($r)
120 if ($r)
[all …]
/PHP-7.4/ext/date/tests/
H A Dbug37514.phpt6 echo date('r', strtotime('May 18th 5:05', 1168156376)), "\n";
7 echo date('r', strtotime('May 18th 5:05pm', 1168156376)), "\n";
8 echo date('r', strtotime('May 18th 5:05 pm', 1168156376)), "\n";
9 echo date('r', strtotime('May 18th 5:05am', 1168156376)), "\n";
10 echo date('r', strtotime('May 18th 5:05 am', 1168156376)), "\n";
11 echo date('r', strtotime('May 18th 2006 5:05pm', 1168156376)), "\n";
/PHP-7.4/sapi/cgi/tests/
H A D002.phpt32 Content-type: text/html%r; charset=.*|%r
37 Content-type: text/html%r; charset=.*|%r
42 Content-type: text/html%r; charset=.*|%r
47 Content-type: text/html%r; charset=.*|%r
/PHP-7.4/ext/gd/libgd/
H A Dgd_rotate.c65 if (r>255) { in gdImageSkewX()
66 r = 255; in gdImageSkewX()
116 int i, iYPos=0, r, g, b, a; in gdImageSkewY() local
156 if (r>255) { in gdImageSkewY()
157 r = 255; in gdImageSkewY()
204 int c,r,g,b,a; in gdImageRotate90() local
228 r = gdImageRed(src,c); in gdImageRotate90()
251 int c,r,g,b,a; in gdImageRotate180() local
275 r = gdImageRed(src,c); in gdImageRotate180()
299 int c,r,g,b,a; in gdImageRotate270() local
[all …]
/PHP-7.4/ext/standard/tests/streams/
H A Dbug46024.phpt11 ,array(0 => array('pipe', 'r'), 1 => array('pipe', 'w'))
18 $r = array($pipes[1]);
21 $ret = stream_select($r, $w, $e, 1);
22 var_dump($ret === (count($r) + count($w)));
25 $r = array($pipes[1]);
28 $ret = stream_select($r, $w, $e, 1);
29 var_dump($ret === (count($r) + count($w)));
/PHP-7.4/ext/posix/tests/
H A Dposix_getpwuid_basic.phpt22 \[name\] => [^\r\n]+
23 \[passwd\] => [^\r\n]+
26 \[gecos\] => [^\r\n]*
27 \[dir\] => [^\r\n]+
28 \[shell\] => [^\r\n]+
/PHP-7.4/ext/opcache/tests/
H A Dbug76281.phpt8 function test($r, $action) {
12 if ($user_sub_resource && isset($r['user_id'])) {
13 $user_id = $r['user_id'];
15 else if (isset($r['id'])) {
16 $user_id = $r['id'];
/PHP-7.4/sapi/cli/tests/
H A D012-2.phpt10 // -r : behavior = CLI_DIRECT
16 var_dump(`"$php" -n -r "echo 1;" -F some.php`);
17 var_dump(`"$php" -n -r "echo 2;" -f some.php`);
18 var_dump(`"$php" -n -r "echo 3;" -l`); // ignores linting
19 var_dump(`"$php" -n -r "echo 4;" -R some.php`);
20 var_dump(`"$php" -n -r "echo 5;" -B ""`);
22 var_dump(`"$php" -n -r "echo 6;" -E ""`);
24 var_dump(`"$php" -n -r "echo 7;" -s`);
25 var_dump(`"$php" -n -r "echo 8;" -w`);
26 var_dump(`"$php" -n -l -r "echo 9;"`);

Completed in 32 milliseconds

12345678910>>...63