Home
last modified time | relevance | path

Searched refs:t (Results 151 – 175 of 1731) sorted by relevance

12345678910>>...70

/PHP-7.1/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";
23 *** Testing session_set_save_handler() : register session handler but don't start ***
/PHP-7.1/tests/classes/
H A Dabstract_inherit.phpt15 $t = new fail();
16 $t = new pass();
18 echo "Done\n"; // Shouldn't be displayed
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 Dstatic_mix_2.phpt20 $t = new pass();
21 $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
/PHP-7.1/Zend/tests/
H A Dconcat_003.phpt28 $texts .= implode("\t", $data) . "\r\n";
31 $t = microtime(TRUE) - $time;
32 var_dump($t < $t_max);
H A Dbug60833.phpt22 $t = new B();
23 $t->testit();
24 var_dump($t);
H A Dstrlen.phpt16 $t = new Test;
17 var_dump(strlen($t));
18 var_dump($t->something);
H A Dbug38624.phpt14 throw new Exception( "doesn't work" );
19 throw new Exception( "doesn't work" );
29 Fatal error: Uncaught Exception: doesn't work in %s:%d
/PHP-7.1/ext/standard/tests/strings/
H A Dsubstr_count_error.phpt13 var_dump( substr_count($str, "t", 0, 15, 30) );
16 var_dump(substr_count($str, "t", -20));
19 var_dump(substr_count($str, "t", 25));
26 var_dump( substr_count($str, "t", "") );
29 var_dump( substr_count($str, "t", 2, -20) );
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-7.1/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_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 …]
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 …]
/PHP-7.1/sapi/fpm/fpm/events/
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-7.1/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(tables, key, h, i, t, l, r) \ argument
57 t = r; \
59 l = t; \
200 R((tables), key, h, i, t, l, r); \
[all …]
/PHP-7.1/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";
H A Dini_use_exceptions_basic.phpt8 $t = transliterator_create('any-hex');
10 var_dump($t->transliterate('a', 3));
16 var_dump($t->transliterate('a', 3));
/PHP-7.1/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-7.1/ext/date/tests/
H A Doo_002.phpt16 $t = new _t("Asia/Tokyo");
17 var_dump($t->getName());
18 $c = clone $t;
/PHP-7.1/ext/soap/tests/bugs/
H A Dbug42151.phpt17 echo 'I don\'t get executed either.' . "\n";
29 SOAP-ERROR: Parsing WSDL: Couldn't load from 'httpx://' : failed to load external entity "httpx://"
32 I don't get executed either.
/PHP-7.1/ext/mbstring/tests/
H A Dzend_multibyte-01.phpt15 �\�\�\("�h���~�t�@�\");
18 �h���~�t�@�\
/PHP-7.1/ext/simplexml/tests/
H A Dbug69169.phpt12 <item s="t" />
18 $b = str_replace(array("\n", "\r", "\t"), "", $a);
43 [s] => t

Completed in 27 milliseconds

12345678910>>...70