Home
last modified time | relevance | path

Searched refs:r (Results 76 – 100 of 1819) sorted by relevance

12345678910>>...73

/PHP-5.5/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-5.5/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-5.5/ext/standard/tests/http/
H A Dbug67430.phpt22 "data://text/plain,HTTP/1.1 308\r\nLocation: /foo\r\n\r\n",
23 "data://text/plain,HTTP/1.1 200\r\nConnection: close\r\n\r\n",
/PHP-5.5/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)));
H A Dbug44818.phpt12 test("php://memory","r");
13 test("php://memory","r+");
14 test("php://temp","r");
18 php://memory, r
23 php://memory, r+
28 php://temp, r
/PHP-5.5/ext/standard/tests/strings/
H A Dhtmlspecialchars_decode_variation4.phpt19 …'Roy's height > Sam's height... \t\t 13 < 15...\n\r " double quote\f\v string…
21 '\r\tRoy's height &gt\r; Sam\t's height',
46 string(88) "Roy&#039;s height > Sam&#039;s height... \t\t 13 < 15...\n\r " double quote\f\v string …
47 string(88) "Roy&#039;s height > Sam&#039;s height... \t\t 13 < 15...\n\r " double quote\f\v string …
48 string(98) "Roy&#039;s height > Sam&#039;s height... \t\t 13 < 15...\n\r &quot; double quote\f\v st…
49 string(78) "Roy's height > Sam's height... \t\t 13 < 15...\n\r " double quote\f\v string ""
56 string(48) "\r\tRoy&#039;s height &gt\r; Sam\t&#039;s height"
57 string(48) "\r\tRoy&#039;s height &gt\r; Sam\t&#039;s height"
58 string(48) "\r\tRoy&#039;s height &gt\r; Sam\t&#039;s height"
59 string(38) "\r\tRoy's height &gt\r; Sam\t's height"
H A Dstrtr_variation3.phpt21 \tes\t\\stt\r
23 \ntest\r\nstrtr
31 "\tes\t\\stt\r",
33 "\ntest\r\nstrtr",
38 '\tes\t\\stt\r',
40 '\ntest\r\nstrtr',
48 $from = "\n\r\t\\";
50 $replace_pairs = array("\n" => "t", "\r\n" => "T", "\n\r\t\\" => "TEST");
88 string(12) "\tes\t\stt\r"
94 string(15) "\ntest\r\nstrtr"
/PHP-5.5/sapi/apache2handler/
H A Dphp_functions.c63 if (!filename || !ctx || !ctx->r) { in php_apache_lookup_uri()
67 return ap_sub_req_lookup_uri(filename, ctx->r, ctx->r->output_filters); in php_apache_lookup_uri()
186 arr = apr_table_elts(ctx->r->headers_in); in PHP_FUNCTION()
260 request_rec *r; in PHP_FUNCTION() local
268 r = ctx->r; in PHP_FUNCTION()
271 while(r->prev) { in PHP_FUNCTION()
272 r = r->prev; in PHP_FUNCTION()
296 request_rec *r; in PHP_FUNCTION() local
304 r = ctx->r; in PHP_FUNCTION()
307 while(r->prev) { in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/hash/
H A Dhash_gost.c31 t = (k1) + r; \
39 r = h[i]; \
57 t = r; \
58 r = l; \
99 x[7] = r;
103 r = x[2]; \
106 x[4] = l ^ r; \
109 r = x[3]; \
126 s[i] = r; \
201 S(s, l, r); \
[all …]
/PHP-5.5/ext/oci8/tests/
H A Ddrcp_cclass1.phpt14 $r = @oci_execute($s);
15 if (!$r)
17 $r = oci_fetch_array($s);
18 if ($r['DBTYPE'] !== 'CDB$ROOT')
41 oci_fetch_all($s, $r);
42 var_dump($r);
50 oci_fetch_all($s, $r);
51 var_dump($r);
57 oci_fetch_all($s, $r);
58 var_dump($r);
H A Dcommit_002.phpt28 $r = @oci_execute($s, OCI_DEFAULT);
29 if (!$r) {
33 $r = oci_commit($c);
34 if (!$r) {
42 $r = @oci_execute($s, OCI_NO_AUTO_COMMIT);
43 if (!$r) {
47 $r = oci_commit($c);
48 if (!$r) {
/PHP-5.5/ext/sockets/tests/
H A Dmcast_ipv6_recv_limited.phpt23 $r = socket_sendto($s, $m = "testing packet", strlen($m), 0, 'ff01::114', 3000);
24 if ($r === false) {
67 $r = socket_sendto($sends1, $m = "testing packet", strlen($m), 0, $mcastaddr, 3000);
68 var_dump($r);
70 $r = socket_recvfrom($s, $str, 2000, 0, $from, $fromPort);
71 var_dump($r, $str, $from);
75 var_dump($r);
91 var_dump($r);
92 $r = socket_sendto($sends1, $m = "unicast packet", strlen($m), 0, "::1", 3000);
93 var_dump($r);
[all …]
/PHP-5.5/ext/dom/tests/
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(): expected '>' %s
26 Warning: DOMDocument::load%r(XML){0,1}%r(): Premature end of data in tag books %s
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(): expected '>' %s
26 Warning: DOMDocument::load%r(XML){0,1}%r(): Premature end of data in tag books %s
/PHP-5.5/ext/mbstring/oniguruma/enc/
H A Dunicode.c11037 if (r != 0) return r;
11040 if (r != 0) return r;
11049 if (r != 0) return r;
11070 if (r != 0) return r;
11074 if (r != 0) return r;
11079 if (r != 0) return r;
11083 if (r != 0) return r;
11097 if (r != 0) return r;
11104 if (r != 0) return r;
11139 if (r != 0) return r;
[all …]
/PHP-5.5/ext/imap/tests/
H A Dimap_append_basic.phpt27 , "From: webmaster@something.com\r\n"
28 . "To: info@something.com\r\n"
29 . "Subject: Test message\r\n"
30 . "\r\n"
31 . "this is a test message, please ignore\r\n"
35 , "From: webmaster@something.com\r\n"
36 . "To: info@something.com\r\n"
37 . "Subject: Another test\r\n"
38 . "\r\n"
39 . "this is another test message, please ignore it too!!\r\n"
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput5217 a\r\n\r\n\r\nb
636 \r\r\n\n\r
637 \r\r\n\n\r\n
641 \r\r\n\n\r
642 \r\r\n\n\r\n
758 \r\r\P
760 \r\r\r\P
761 \r\r\r\P\P
766 \r\r\P
768 \r\r\r\P
[all …]
H A Dtestinput9581 a\r\n\r\nb
582 a\r\n\r\n\r\nb
587 a\r
700 \r\r\P
701 \r\r\P\P
702 \r\r\r\P
703 \r\r\r\P\P
708 \r\r\P
709 \r\r\P\P
710 \r\r\r\P
[all …]
/PHP-5.5/ext/mysqli/
H A Dmysqli_libmysql.h32 #define mysqli_result_is_unbuffered(r) ((r)->handle && (r)->handle->status == MYSQL_STATUS_USE_RES… argument
33 #define mysqli_result_is_unbuffered_and_not_everything_is_fetched(r) mysqli_result_is_unbuffered(r) argument
41 #define mysqli_free_result(r, is_forced) mysql_free_result((r)) argument
/PHP-5.5/ext/date/tests/
H A Dbug54851.phpt9 echo $date->format("r"), "\n";
10 echo $date2->format("r"), "\n";
16 echo $datePre->format("r"), "\n";
17 echo $datePost->format("r"), "\n";
24 echo $date1->format('r'), "\n";
25 echo $date2->format('r'), "\n";
31 echo $date1->format('r'), "\n";
32 echo $date2->format('r'), "\n";
38 echo $date1->format('r'), "\n";
39 echo $date2->format('r'), "\n";
/PHP-5.5/ext/standard/tests/mail/
H A Dmail_basic6.phpt26 $additional_headers = "HEAD1: a\r\nHEAD2: b\r\n";
79 $additional_headers = "\r\nHEAD1: a\r\nHEAD2: b\r\n";
89 $additional_headers = "\r\n\r\nHEAD1: a\r\nHEAD2: b\r\n";
99 $additional_headers = "\n\nHEAD1: a\r\nHEAD2: b\r\n";
109 $additional_headers = "\r\rHEAD1: a\r\nHEAD2: b\r\n";
119 $additional_headers = "HEAD1: a\r\n\r\nHEAD2: b\r\n";
129 $additional_headers = "HEAD1: a\r\n\nHEAD2: b\r\n";
149 $additional_headers = "HEAD1: a\r\rHEAD2: b\r\n";
169 $additional_headers = "HEAD1: a\n\r\nHEAD2: b\r\n";
180 $additional_headers = "HEAD1: a\r\nHEAD2: b\r\n\n";
[all …]
/PHP-5.5/ext/bz2/tests/
H A D002.phpt13 $fp = fopen("bz_open_002.txt", "r");
14 var_dump(bzopen($fp, "r"));
22 var_dump(bzopen($fp, "r"));
25 var_dump(bzopen($fp, "r"));
31 var_dump(bzopen($fp, "r"));
40 var_dump(bzopen($fp, "r"));
46 var_dump(bzopen($fp, "r"));
52 var_dump(bzopen($fp, "r"));
55 var_dump(bzopen($fp, "r"));
61 var_dump(bzopen($fp, "r"));
[all …]
H A D001.phpt10 var_dump(bzopen("", "r"));
14 var_dump(bzopen("no_such_file", "r"));
16 $fp = fopen(__FILE__,"r");
17 var_dump(bzopen($fp, "r"));
25 Warning: bzopen(): '' is not a valid mode for bzopen(). Only 'w' and 'r' are supported. in %s on li…
34 Warning: bzopen(): 'x' is not a valid mode for bzopen(). Only 'w' and 'r' are supported. in %s on l…
37 Warning: bzopen(): 'rw' is not a valid mode for bzopen(). Only 'w' and 'r' are supported. in %s on …
/PHP-5.5/ext/standard/tests/file/
H A Dbug22414.phpt13 passthru($php . $args . ' -r " echo \"HELLO\"; "');
20 $cmd = $php . $args . ' -r \"readfile(@getenv(\'TEST_PHP_EXECUTABLE\')); \"';
21 $cmd = $php . $args . ' -r \' passthru("'.$cmd.'"); \' > '.$tmpfile ;
23 $cmd = $php . $args . ' -r \"readfile(@getenv(\\\\\\"TEST_PHP_EXECUTABLE\\\\\\")); \"';
24 $cmd = $php . $args . ' -r " passthru(\''.$cmd.'\');" > '.$tmpfile ;
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_real_escape_string_unicode.phpt39 if ("манда\\rин" !== ($tmp = mysqli_real_escape_string($link, "манда\rин")))
40 printf("[008] Expecting \\r, got %s\n", $tmp);
45 if (($exp='абра\\\\ка\"да\\'."'".'бра\Zсим\\nсала\\rби\\0м') !==
46 ($tmp = mysqli_real_escape_string($link, "абра\\ка\"да'бра\032сим\nсала\rби" . chr(0) . "м")))
63 if ("张明安\\r在" !== ($tmp = mysqli_real_escape_string($link, "张明安\r在")))
64 printf("[015] Expecting 张明安\\r在, got %s\n", $tmp);
69 if (($exp='阿卜拉\\\\嘉\"达丰\\'."'".'乳罩\Z辛\\n萨拉\\r毕\\0米') !==
70 ($tmp = mysqli_real_escape_string($link, "阿卜拉\\嘉\"达丰'乳罩\032辛\n萨拉\r毕" . chr(0) . "米")))

Completed in 70 milliseconds

12345678910>>...73