Home
last modified time | relevance | path

Searched refs:r (Results 126 – 150 of 1958) sorted by relevance

12345678910>>...79

/PHP-7.3/ext/dom/tests/
H A Dbug47849.phpt9 $aDOM->appendChild($aDOM->createElementNS('urn::root','r:root'));
22 <r:root xmlns:r="urn::root"><data xmlns="urn::data"/></r:root>
/PHP-7.3/ext/standard/tests/strings/
H A Dnl2br_variation2.phpt17 '\r',
18 '\r\n',
21 'Hello\r\nWorld',
51 string(2) "\r"
53 string(4) "\r\n"
59 string(14) "Hello\r\nWorld"
H A Dchunk_split_variation9.phpt33 "\r",
34 "\r\n",
41 ")speci@! ch@r$("
113r$(s to t)speci@! ch@r$(est ch)speci@! ch@r$(unk_sp)speci@! ch@r$(lit() )speci@! ch@r$(with v)spec…
H A Dbug43927.phpt5 var_dump(html_entity_decode("&amp;lt;", ENT_COMPAT, 'koi8-r'));
6 var_dump(html_entity_decode("&amp;#38;", ENT_COMPAT, 'koi8-r'));
7 var_dump(html_entity_decode("&amp;#38;lt;", ENT_COMPAT, 'koi8-r'));
/PHP-7.3/ext/oci8/tests/
H A Dbug51291_2.phpt18 $r = @oci_execute($s, OCI_DEFAULT);
19 if (!$r) {
22 $r = oci_execute($s, OCI_DEFAULT);
24 if (is_null($r)) echo "null";
25 else if ($r === false) echo "false";
26 else if ($r === true) echo "true";
27 else echo $r;
H A Dbug36096.phpt26 string(%r[53]%r) "%r('ABC'|EXP)%r"
H A Dstatement_cache.phpt31 ["%r(1\+3|EXP)%r"]=>
37 ["%r(1\+3|EXP)%r"]=>
H A Dfetch_all5.phpt28 $r = oci_fetch_all($s, $res, 0, -1);
29 var_dump($r);
36 $r = oci_fetch_all($s, $res, 0, 0);
37 var_dump($r);
44 $r = oci_fetch_all($s, $res, -1, 0);
45 var_dump($r);
/PHP-7.3/ext/reflection/tests/
H A D026.phpt5 $r = new ReflectionExtension("reflection");
6 $r->info();
9 $r = new ReflectionExtension("date");
10 $r->info();
/PHP-7.3/ext/standard/tests/http/
H A Dhttp_response_header_01.phpt13 "data://text/plain,HTTP/1.0 200 Ok\r\nSome: Header\r\nSome: Header\r\n\r\nBody",
H A Dbug60570.phpt15 "data://text/plain,HTTP/1.0 404 Not Found\r\n\r\n",
16 "data://text/plain,HTTP/1.0 404 Not Found\r\n\r\n",
17 "data://text/plain,HTTP/1.0 404 Not Found\r\n\r\n"
H A Dbug69337.phpt25 "data://text/plain,HTTP/1.0 302 Found\r\nLocation: http://127.0.0.1:22345/try-again\r\n\r\n",
26 "data://text/plain,HTTP/1.0 404 Not Found\r\n\r\n",
/PHP-7.3/ext/session/tests/
H A Dbug74541.phpt9 $r = new ReflectionFunction('session_start');
10 var_dump($r->getNumberOfParameters());
11 var_dump($r->getNumberOfRequiredParameters());
/PHP-7.3/Zend/tests/
H A Dbug33282.phpt6 $r = &$a[0];
7 $r = &$a[1];
8 $r = &$a[2];
H A Dbug38772.phpt12 echo __METHOD__ . "\r\n";
18 echo __METHOD__ . "\r\n";
24 echo __METHOD__ . "\r\n";
30 echo __METHOD__ . "\r\n";
/PHP-7.3/sapi/cgi/tests/
H A D003.phpt50 Content-type: text/html%r; charset=.*|%r
58 Content-type: text/html%r; charset=.*|%r
63 Content-type: text/html%r; charset=.*|%r
/PHP-7.3/ext/standard/tests/streams/
H A Dproc_open_bug60120.phpt8 …$cmd = PHP_BINARY . ' -n -r "fwrite(STDOUT, $in = file_get_contents(\'php://stdin\')); fwrite(STDE…
10 …$cmd = PHP_BINARY . ' -n -r \'fwrite(STDOUT, $in = file_get_contents("php://stdin")); fwrite(STDER…
12 $descriptors = array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
29 $r = $pipes;
32 $n = stream_select($r, $w, $e, 60);
51 foreach ($r as $pipe) {
H A Dproc_open_bug64438.phpt9 …$cmd = PHP_BINARY . ' -n -r "fwrite(STDOUT, $in = file_get_contents(\'php://stdin\')); fwrite(STDE…
11 …$cmd = PHP_BINARY . ' -n -r \'fwrite(STDOUT, $in = file_get_contents("php://stdin")); fwrite(STDER…
13 $descriptors = array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
29 $r = $pipes;
32 $n = stream_select($r, $w, $e, 60);
51 foreach ($r as $pipe) {
H A Dbug72075.phpt5 $r = [stream_socket_server("tcp://127.0.0.1:0", $errno, $errStr)];
10 $dummy =& $r[0];
12 print stream_select($r, $w, $e, 0.5);
/PHP-7.3/ext/date/tests/
H A Dbug52668.phpt11 echo $dt->format('r') . "\n"; // Sun, 12 Dec 2010 00:00:00 +0100
13 echo $start->format('r'), "\n";
15 echo $dt->format('r') . "\n"; // Sun, 12 Dec 2010 00:00:00 +0100
17 echo $start->format('r'), "\n\n";
/PHP-7.3/ext/dba/libcdb/
H A Dcdb.c111 int r; in cdb_read() local
113 r = php_stream_read(c->fp, buf, len); in cdb_read()
114 } while ((r == -1) && (errno == EINTR)); in cdb_read()
115 if (r == -1) in cdb_read()
117 if (r == 0) { in cdb_read()
121 buf += r; in cdb_read()
122 len -= r; in cdb_read()
/PHP-7.3/ext/openssl/tests/
H A Dbug65538_003.phpt31 while (!preg_match('/\r?\n\r?\n/', $in)) {
34 $response = "HTTP/1.0 200 OK\r\n"
35 . "Content-Type: text/plain\r\n"
36 . "Content-Length: 12\r\n"
37 . "Connection: close\r\n"
38 . "\r\n"
/PHP-7.3/ext/soap/tests/
H A Dbug70875.phpt42 $r = new TestService();
43 $r->TestServiceRQ = new TestServiceRQ();
44 $r->TestServiceRQ->RqHeader = new RqHeader();
46 $c->testService($r);
/PHP-7.3/ext/zip/tests/
H A Dbug49072.phpt14 $r = $o->getStream('file1'); // this file has a wrong crc
15 if (!$r)die('failed to open a stream for file1');
17 while (! feof($r)) {
18 $s .= fread($r,1024);
/PHP-7.3/ext/mbstring/oniguruma/src/
H A Dregposix.c148 int r, len; in regcomp() local
171 if (r != ONIG_NORMAL) { in regcomp()
172 return onig2posix_error_code(r); in regcomp()
183 int r, i, len; in regexec() local
208 r = onig_search(ONIG_C(reg), (UChar* )str, end, (UChar* )str, end, in regexec()
211 if (r >= 0) { in regexec()
212 r = 0; /* Match */ in regexec()
217 else if (r == ONIG_MISMATCH) { in regexec()
218 r = REG_NOMATCH; in regexec()
223 r = onig2posix_error_code(r); in regexec()
[all …]

Completed in 60 milliseconds

12345678910>>...79