Home
last modified time | relevance | path

Searched refs:t (Results 126 – 150 of 1568) sorted by relevance

12345678910>>...63

/PHP-5.5/ext/standard/tests/strings/
H A Dstrtr_variation3.phpt21 \tes\t\\stt\r
31 "\tes\t\\stt\r",
38 '\tes\t\\stt\r',
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"
H A Dsubstr_count_variation_001.phpt9 var_dump( substr_count($str, "t", "5") );
10 var_dump( substr_count($str, "t", "5", "10") );
11 var_dump( substr_count($str, "i", "5t") );
12 var_dump( substr_count($str, "i", "5t", "10t") );
15 var_dump( substr_count($str, "t", "") );
17 var_dump( substr_count($str, "t", "", 15) );
H A Dstr_pad.phpt54 $pad_strings = array ("=", 1, true, "string_pad", 1.5, "\t", '\t');
356 string(16) "variation\t\t\t\"
357 string(16) "\t\t\t\variation"
358 string(16) "variation\t\t\t\"
359 string(16) "\t\variation\t\t"
H A Dstr_split_variation6.phpt23 $str = 'This is a string with 123 & escape char \t';
75 string(1) "t"
91 string(1) "t"
135 string(1) "t"
144 string(42) "This is a string with 123 & escape char \t"
151 string(16) "& escape char \t"
156 string(42) "This is a string with 123 & escape char \t"
H A Dstrtr_basic.phpt12 $trans1_arr = array("t" => "T", "e" => "E", "st" => "ST");
13 $trans2_arr = array('t' => 'T', 'e' => 'E', 'st' => 'ST');
19 var_dump( strtr("test strtr", "t", "T") );
20 var_dump( strtr('test strtr', 't', 'T') );
21 var_dump( strtr($heredoc_str, "t", "T") );
/PHP-5.5/ext/dba/tests/
H A Ddba016.phpt15 $db_file1 = dba_popen($db_filename, 'n-t', 'flatfile');
22 Warning: dba_popen(%stest0.dbm,n-t): You cannot combine modifiers - (no lock) and t (test lock) in …
/PHP-5.5/Zend/tests/
H A Dbug20240.phpt31 $t = new test();
33 $t->add();
34 $t->add();
H A Dbug60833.phpt22 $t = new B();
23 $t->testit();
24 var_dump($t);
/PHP-5.5/sapi/fpm/fpm/events/
H A Dselect.c91 struct timeval t; in fpm_event_select_wait() local
97 t.tv_sec = timeout / 1000; in fpm_event_select_wait()
98 t.tv_usec = (timeout % 1000) * 1000; in fpm_event_select_wait()
101 ret = select(FD_SETSIZE, &current_fds, NULL, NULL, &t); in fpm_event_select_wait()
H A Dport.c120 timespec_t t; in fpm_event_port_wait() local
123 t.tv_sec = (int)(timeout / 1000); in fpm_event_port_wait()
124 t.tv_nsec = (timeout % 1000) * 1000 * 1000; in fpm_event_port_wait()
128 ret = port_getn(pfd, events, nevents, &nget, &t); in fpm_event_port_wait()
/PHP-5.5/ext/session/tests/
H A Dsession_set_save_handler_class_015.phpt2 Test session_set_save_handler() : register session handler but don't start
19 echo "*** Testing session_set_save_handler() : register session handler but don't start ***\n";
24 *** Testing session_set_save_handler() : register session handler but don't start ***
/PHP-5.5/tests/classes/
H A Diterators_007.phpt17 $t = new Test();
19 while($t->x < 5)
23 foreach($t as $k => $v)
32 $t->x++;
H A Dabstract_class.phpt21 $t = new fail();
22 $t->show();
24 echo "Done\n"; // shouldn't be displayed
H A Dprivate_004b.phpt24 $t = new pass();
25 $t->do_show();
30 echo "Done\n"; // shouldn't be displayed
H A Dprivate_005b.phpt24 $t = new pass();
25 $t->do_show();
30 echo "Done\n"; // shouldn't be displayed
/PHP-5.5/ext/standard/tests/file/
H A D007_variation10.phpt2 Test fopen and fclose() functions - usage variations - "r+t" mode
17 /* Test fopen() and fclose(): Opening the file in "r+t" mode,
29 echo "*** Test fopen() & fclose() functions: with 'r+t' mode ***\n";
30 $file_handle = fopen($file, "r+t"); //opening the file in "r+t" mode
46 *** Test fopen() & fclose() functions: with 'r+t' mode ***
H A Dfgetcsv_variation8.phpt35 $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",
36 "a+", "a+b", "a+t",
37 "w+", "w+b", "w+t",
38 "x+", "x+b", "x+t");
139 -- Testing fgetcsv() with file opened using r+t mode --
163 -- Testing fgetcsv() with file opened using a+t mode --
187 -- Testing fgetcsv() with file opened using w+t mode --
211 -- Testing fgetcsv() with file opened using x+t mode --
259 -- Testing fgetcsv() with file opened using r+t mode --
283 -- Testing fgetcsv() with file opened using a+t mode --
[all …]
H A Dfgetcsv_variation9.phpt35 $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",
36 "a+", "a+b", "a+t",
37 "w+", "w+b", "w+t",
38 "x+", "x+b", "x+t");
137 -- Testing fgetcsv() with file opened using r+t mode --
161 -- Testing fgetcsv() with file opened using a+t mode --
185 -- Testing fgetcsv() with file opened using w+t mode --
209 -- Testing fgetcsv() with file opened using x+t mode --
257 -- Testing fgetcsv() with file opened using r+t mode --
281 -- Testing fgetcsv() with file opened using a+t mode --
[all …]
/PHP-5.5/ext/hash/
H A Dhash_gost.c31 t = (k1) + r; \
32 l ^= tables[0][t & 0xff] ^ tables[1][(t >> 8) & 0xff] ^ \
33 tables[2][(t >> 16) & 0xff] ^ tables[3][t >> 24]; \
34 t = (k2) + l; \
35 r ^= tables[0][t & 0xff] ^ tables[1][(t >> 8) & 0xff] ^ \
36 tables[2][(t >> 16) & 0xff] ^ tables[3][t >> 24];
38 #define R(key, h, i, t, l, r) \ argument
57 t = r; \
59 l = t; \
200 R(key, h, i, t, l, r); \
[all …]
/PHP-5.5/scripts/apache/
H A Dconffix.awk3 /^[ \t]*php3_*/ {
20 ! /^[ \t]*php3_*/ {
H A Dhtaccessfix.awk3 /^[ \t]*php3_*/ {
20 ! /^[ \t]*php3_*/ {
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_errorinfo.phpt78 …2]: Base table or view not found: 1146 Table '%s.ihopeitdoesnotexist' doesn't exist in %s on line …
85 %unicode|string%(%d) "Table '%s.ihopeitdoesnotexist' doesn't exist"
88 …: SQLSTATE[42S02]: Base table or view not found: 1146 Table '%s.test' doesn't exist in %s on line …
96 %unicode|string%(%d) "Table '%s.test' doesn't exist"
108 …2]: Base table or view not found: 1146 Table '%s.ihopeitdoesnotexist' doesn't exist in %s on line …
119 …: SQLSTATE[42S02]: Base table or view not found: 1146 Table '%s.test' doesn't exist in %s on line …
126 %unicode|string%(%d) "Table '%s.test' doesn't exist"
134 %unicode|string%(%d) "Table '%s.ihopeitdoesnotexist' doesn't exist"
/PHP-5.5/ext/intl/tests/
H A Dmsgfmt_format.phpt26 $t = 123;
36 $str_res .= dump( ut_msgfmt_format( $fmt, array($m, $t, $m/$t) ) ) . "\n";
37 $str_res .= dump( ut_msgfmt_format_message($locale, $pattern, array($m, $t, $m/$t))) . "\n";
/PHP-5.5/ext/json/tests/
H A Dbug64874_part1.phpt21 decode("true\t");
27 decode(" true\t");
31 decode("\ttrue\t");
35 decode("\ntrue\t");
39 decode("\rtrue\t");
/PHP-5.5/sapi/milter/
H A DTODO1 threaded version still leaks mem, don't know why
2 extensions aren't loaded

Completed in 50 milliseconds

12345678910>>...63