Home
last modified time | relevance | path

Searched refs:t (Results 76 – 100 of 1568) sorted by relevance

12345678910>>...63

/PHP-5.5/ext/standard/tests/file/
H A Dfgetc_variation4.phpt69 string(1) "t"
95 string(1) "t"
108 -- File opened in mode : a+t --
121 string(1) "t"
147 string(1) "t"
173 string(1) "t"
186 -- File opened in mode : x+t --
199 string(1) "t"
225 string(1) "t"
251 string(1) "t"
[all …]
H A Dtempnam_variation8-win32.phpt93 File name is => %s\tempnam_variation2\tempnam_variation2_sub\t%s
98 File name is => %s\tempnam_variation2\t%s
103 File name is => %s\tempnam_variation2\t%s
108 File name is => %s\tempnam_variation2\t%s
113 File name is => %s\tempnam_variation2\t%s
118 File name is => %s\t%s
123 File name is => %s\t%s
128 File name is => %s\tempnam_variation2\tempnam_variation2_sub\t%s
133 File name is => %s\tempnam_variation2\tempnam_variation2_sub\t%s
138 File name is => %s\tempnam_variation2\tempnam_variation2_sub\t%s
[all …]
H A Dfputcsv_variation10.phpt86 -- file opened in r+t --
107 -- file opened in a+t --
128 -- file opened in w+t --
149 -- file opened in x+t --
172 -- file opened in r+t --
196 -- file opened in a+t --
220 -- file opened in w+t --
244 -- file opened in x+t --
266 -- file opened in r+t --
287 -- file opened in a+t --
[all …]
H A D007_variation14.phpt2 Test fopen and fclose() functions - usage variations - "a+t" mode
17 /* Test fopen() and fclose(): Opening the file in "a+t" mode,
29 echo "*** Test fopen() & fclose() functions: with 'a+t' mode ***\n";
30 $file_handle = fopen($file, "a+t"); //opening the file "a+t" mode
41 fclose( fopen($file, "a+t") ); //Opening the non-existing file in "a+t" mode, which will be created
49 *** Test fopen() & fclose() functions: with 'a+t' mode ***
H A D007_variation16.phpt2 Test fopen and fclose() functions - usage variations - "x+t" mode
17 /* Test fopen() and fclose(): Opening the file in "x+t" mode,
20 checking for the warning msg when trying to open an existing file in "x+t" mode,
27 echo "*** Test fopen() & fclose() functions: with 'x+t' mode ***\n";
28 $file_handle = fopen($file, "x+t"); //opening the non-existing file in "x+t" mode, file will be cr…
39 $file_handle = fopen($file, "x+t"); //Opening the existing data file in "x+t" mode to check for th…
46 *** Test fopen() & fclose() functions: with 'x+t' mode ***
/PHP-5.5/ext/standard/tests/serialize/
H A Dbug21957.phpt21 $t['one'] = 'ABC';
22 $t['two'] = new test();
24 var_dump($t);
26 $s = @serialize($t);
/PHP-5.5/ext/spl/tests/
H A Dbug44615.phpt14 foreach (new RecursiveIteratorIterator($rai) as $t) {
15 var_dump($t);
19 foreach (new RecursiveIteratorIterator($rai) as $t) {
20 var_dump($t);
H A DSplFileObject_fputcsv_variation10.phpt77 -- file opened in r+t --
98 -- file opened in a+t --
119 -- file opened in w+t --
140 -- file opened in x+t --
163 -- file opened in r+t --
187 -- file opened in a+t --
211 -- file opened in w+t --
235 -- file opened in x+t --
257 -- file opened in r+t --
278 -- file opened in a+t --
[all …]
/PHP-5.5/Zend/tests/traits/
H A Dlanguage005.phpt33 $t = new Talker;
34 $t->smallTalk();
35 $t->bigTalk();
36 $t->talk();
/PHP-5.5/tests/classes/
H A Darray_access_013.phpt14 $t = new Test;
18 echo isset($t[0]);
27 echo $t[0];
36 $t[0] = 1;
45 unset($t[0]);
H A Dabstract.phpt21 $t = new pass();
22 $t->show();
23 $t->error();
25 echo "Done\n"; // shouldn't be displayed
H A Dprivate_redeclare.phpt14 $t = new base();
15 $t->test();
29 $t = new derived();
30 $t->test();
H A Dprotected_001b.phpt18 $t = new pass();
19 $t->good();
20 $t->fail();// must fail because we are calling from outside of class pass
22 echo "Done\n"; // shouldn't be displayed
H A Dprivate_003b.phpt28 $t = new fail();
29 $t->ok();
30 $t->not_ok(); // calling a private function
32 echo "Done\n"; // shouldn't be displayed
/PHP-5.5/ext/date/tests/
H A Dbug36510.phpt7 $t = 1140973388;
9 var_dump(strtotime("-2 hours", $t));
10 var_dump(strtotime("-2\thours", $t));
H A Dstrtotime3-64bit.phpt12 " \t\r\n000",
38 $t = strtotime($str, $time);
39 if (is_integer($t)) {
40 var_dump(date(DATE_RFC2822, $t));
42 var_dump($t);
H A Dstrtotime3.phpt12 " \t\r\n000",
38 $t = strtotime($str, $time);
39 if (is_integer($t)) {
40 var_dump(date(DATE_RFC2822, $t));
42 var_dump($t);
/PHP-5.5/ext/standard/html_tables/
H A Dhtml_table_gen.php23 $t = <<<CODE variable
272 $t = <<<CODE variable
284 echo $t;
363 $t = <<<'CODE' variable
424 echo $t;
499 $t = <<<CODE variable
523 echo $t;
581 $t = <<<CODE variable
604 echo $t;
704 $t = <<<CODE variable
[all …]
/PHP-5.5/ext/standard/
H A Dbrowscap.c88 char *t; in convert_browscap_pattern() local
94 t[j++] = '~'; in convert_browscap_pattern()
95 t[j++] = '^'; in convert_browscap_pattern()
100 t[j] = '.'; in convert_browscap_pattern()
104 t[j] = '*'; in convert_browscap_pattern()
108 t[j] = '.'; in convert_browscap_pattern()
116 t[j] = '('; in convert_browscap_pattern()
120 t[j] = ')'; in convert_browscap_pattern()
132 t[j++] = '$'; in convert_browscap_pattern()
133 t[j++] = '~'; in convert_browscap_pattern()
[all …]
/PHP-5.5/Zend/tests/
H A Dbug32993.phpt2 Bug #32993 (implemented Iterator function current() don't throw exception)
16 $t = new Test();
17 $t->arr = array(1, 2, 3);
20 foreach ($t as $v) {
/PHP-5.5/ext/standard/tests/strings/
H A Dchunk_split_variation9.phpt31 "\t",
57 string(66) "This i s to t est ch unk_sp lit() with v arious endin g stri ng "
63 string(106) "This i@#$%^s to t@#$%^est ch@#$%^unk_sp@#$%^lit() @#$%^with v@#$%^arious@#$%^ endin@#$…
65 string(66) "This i s to t est ch unk_sp lit() with v arious endin g stri ng "
68 s to t
80 s to t
92 s to t
103 string(66) "This i�s to t�est ch�unk_sp�lit() �with v�arious� endin�g stri�ng�"
107 string(106) "This i(MSG)s to t(MSG)est ch(MSG)unk_sp(MSG)lit() (MSG)with v(MSG)arious(MSG) endin(MS…
109 string(206) "This i)ending string(s to t)ending string(est ch)ending string(unk_sp)ending string(li…
[all …]
H A Dhtml_entity_decode2.phpt6 echo "*** HTML 4.01 implicit (shouldn't decode) ***\n";
9 echo "*** HTML 4.01 (shouldn't decode) ***\n";
23 *** HTML 4.01 implicit (shouldn't decode) ***
25 *** HTML 4.01 (shouldn't decode) ***
H A Dstripslashes_variation3.phpt41 "\t",
42 "\\t",
45 '\t',
46 '\\t',
101 string(1) "t"
110 string(1) "t"
113 string(1) "t"
/PHP-5.5/ext/date/
H A Dphp_date.c1076 offset->offset = (t->z - (t->dst * 60)) * -60; in date_format()
1183 (int) t->y, (int) t->m, (int) t->d, in date_format()
1184 (int) t->h, (int) t->i, (int) t->s, in date_format()
1191 php_date_short_day_name(t->y, t->m, t->d), in date_format()
1192 (int) t->d, mon_short_names[t->m - 1], in date_format()
1193 (int) t->y, (int) t->h, (int) t->i, (int) t->s, in date_format()
1287 offset->offset = (t->z - (t->dst * 60)) * -60; in php_idate()
1293 offset->offset = (t->z - (t->dst * 60)) * -60; in php_idate()
1306 timelib_isoweek_from_date(t->y, t->m, t->d, &isoweek, &isoyear); in php_idate()
1312 case 'w': retval = (int) timelib_day_of_week(t->y, t->m, t->d); break; in php_idate()
[all …]
/PHP-5.5/ext/sysvshm/tests/
H A D006.phpt8 $key = ftok(__FILE__, 't');
36 Warning: shm_remove_var(): variable key -10 doesn't exist in %s006.php on line %d
41 Warning: shm_get_var(): variable key 1 doesn't exist in %s006.php on line %d
44 Warning: shm_remove_var(): variable key 1 doesn't exist in %s006.php on line %d
47 Warning: shm_get_var(): variable key 1 doesn't exist in %s006.php on line %d

Completed in 42 milliseconds

12345678910>>...63