Home
last modified time | relevance | path

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

12345678910>>...71

/PHP-7.4/tests/classes/
H A Dabstract_class.phpt19 $t = new fail();
20 $t->show();
22 echo "Done\n"; // shouldn't be displayed
H A Dstatic_mix_2.phpt18 $t = new pass();
19 $t->show();
22 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 Dprivate_004b.phpt22 $t = new pass();
23 $t->do_show();
28 echo "Done\n"; // shouldn't be displayed
/PHP-7.4/ext/standard/tests/strings/
H A Dchunk_split_variation8.phpt25 This's heredoc string with \t and \n white space char.
61 …h:::i:::s:::':::s::: :::h:::e:::r:::e:::d:::o:::c::: :::s:::t:::r:::i:::n:::g::: :::w:::i:::t:::h:…
62 ::: :::w:::h:::i:::t:::e::: :::s:::p:::a:::c:::e::: :::c:::h:::a:::r:::.:::
63t::: :::h:::a:::s::: :::_:::s:::p:::e:::c:::i:::@:::l::: :::c:::h:::@:::r:::$::: :::2:::2:::2:::2:…
64 :::c:::h:::u:::n:::k:::_:::s:::p:::l:::i:::t:::(:::):::"
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 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.4/sapi/fpm/fpm/events/
H A Dselect.c89 struct timeval t; in fpm_event_select_wait() local
95 t.tv_sec = timeout / 1000; in fpm_event_select_wait()
96 t.tv_usec = (timeout % 1000) * 1000; in fpm_event_select_wait()
99 ret = select(FD_SETSIZE, &current_fds, NULL, NULL, &t); in fpm_event_select_wait()
H A Dport.c119 timespec_t t; in fpm_event_port_wait() local
122 t.tv_sec = (int)(timeout / 1000); in fpm_event_port_wait()
123 t.tv_nsec = (timeout % 1000) * 1000 * 1000; in fpm_event_port_wait()
129 ret = port_getn(pfd, events, nevents, &nget, &t); in fpm_event_port_wait()
/PHP-7.4/ext/pdo/tests/
H A Dpdo_033.phpt8 if (!strncasecmp(getenv('PDOTEST_DSN'), 'odbc', strlen('odbc'))) die('skip odbc driver doesn\'t hav…
26 $db->query("CREATE TABLE test (t char($len))");
27 $db->query("INSERT INTO test (t) VALUES($quoted)");
42 …[t] => !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz…
/PHP-7.4/ext/date/
H A Dphp_date.c1136 offset->offset = (t->z + (t->dst * 3600)); in date_format()
1245 (zend_long) t->y, (int) t->m, (int) t->d, in date_format()
1246 (int) t->h, (int) t->i, (int) t->s, in date_format()
1253 php_date_short_day_name(t->y, t->m, t->d), in date_format()
1254 (int) t->d, mon_short_names[t->m - 1], in date_format()
1255 (zend_long) t->y, (int) t->h, (int) t->i, (int) t->s, in date_format()
1348 offset->offset = (t->z + (t->dst * 3600)); in php_idate()
1354 offset->offset = (t->z + (t->dst * 3600)); in php_idate()
1367 timelib_isoweek_from_date(t->y, t->m, t->d, &isoweek, &isoyear); in php_idate()
1373 case 'w': retval = (int) timelib_day_of_week(t->y, t->m, t->d); break; in php_idate()
[all …]
/PHP-7.4/Zend/tests/
H A Dbug60833.phpt22 $t = new B();
23 $t->testit();
24 var_dump($t);
H A Dconcat_003.phpt31 $texts .= implode("\t", $data) . "\r\n";
34 $t = microtime(TRUE) - $time;
35 var_dump($t < $t_max);
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.4/ext/standard/
H A Dbrowscap.c155 char *t; in browscap_convert_pattern() local
166 t[j++] = '~'; in browscap_convert_pattern()
167 t[j++] = '^'; in browscap_convert_pattern()
172 t[j] = '.'; in browscap_convert_pattern()
176 t[j] = '*'; in browscap_convert_pattern()
180 t[j] = '.'; in browscap_convert_pattern()
188 t[j] = '('; in browscap_convert_pattern()
192 t[j] = ')'; in browscap_convert_pattern()
208 t[j++] = '$'; in browscap_convert_pattern()
209 t[j++] = '~'; in browscap_convert_pattern()
[all …]
/PHP-7.4/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 ***
/PHP-7.4/ext/mbstring/tests/
H A Dzend_multibyte-01.phpt16 �\�\�\("�h���~�t�@�\");
19 �h���~�t�@�\
/PHP-7.4/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.4/ext/date/tests/
H A Doo_002.phpt16 $t = new _t("Asia/Tokyo");
17 var_dump($t->getName());
18 $c = clone $t;
/PHP-7.4/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";

Completed in 113 milliseconds

12345678910>>...71