Home
last modified time | relevance | path

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

12345678910>>...70

/PHP-7.1/Zend/tests/
H A Ddtor_scope.phpt25 $t = new TT();
26 $t->add("Hello");
27 $t->add("World");
H A Dbug20240.phpt31 $t = new test();
33 $t->add();
34 $t->add();
/PHP-7.1/ext/pcre/pcrelib/testdata/
H A Dtestinput1497 / (?: [\040\t] | \(
124 (?: [\040\t] | \(
136 (?: [\040\t] | \(
139 (?: [\040\t] | \(
187 (?: [\040\t] | \(
190 (?: [\040\t] | \(
215 (?: [\040\t] | \(
218 (?: [\040\t] | \(
230 (?: [\040\t] | \(
257 (?: [\040\t] | \(
[all …]
H A Dtestinput1715 / (?: [\040\t] | \(
42 (?: [\040\t] | \(
54 (?: [\040\t] | \(
57 (?: [\040\t] | \(
105 (?: [\040\t] | \(
108 (?: [\040\t] | \(
133 (?: [\040\t] | \(
136 (?: [\040\t] | \(
148 (?: [\040\t] | \(
175 (?: [\040\t] | \(
[all …]
/PHP-7.1/ext/standard/tests/strings/
H A Dstr_split_variation6_64bit.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"
161 string(42) "This is a string with 123 & escape char \t"
H A Dconvert_uuencode_basic.phpt21 b"\t This String contains \t\t some control characters\r\n",
28 b'\t This String contains \t\t some control characters\r\n',
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 Dcrypt_sha256.phpt55 foreach ($tests as $iter => $t) {
56 $res = crypt($t[1], $t[0]);
57 if ($res != $t[2]) echo "Iteration $iter failed.
58 Expected: <$t[2]>
H A Dcrypt_sha512.phpt55 foreach ($tests as $iter => $t) {
56 $res = crypt($t[1], $t[0]);
57 if ($res != $t[2]) echo "Iteration $iter failed.
58 Expected: <$t[2]>
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"
/PHP-7.1/ext/date/lib/
H A Dastro.c219 t, /* Diurnal arc */ in timelib_astro_rise_set_altitude() local
270 t = 0.0; /* Sun always below altit */ in timelib_astro_rise_set_altitude()
275 t = 12.0; /* Sun always above altit */ in timelib_astro_rise_set_altitude()
280 t = acosd(cost) / 15.0; /* The diurnal arc, hours */ in timelib_astro_rise_set_altitude()
283 *ts_rise = ((tsouth - t) * 3600) + t_utc->sse; in timelib_astro_rise_set_altitude()
284 *ts_set = ((tsouth + t) * 3600) + t_utc->sse; in timelib_astro_rise_set_altitude()
286 *h_rise = (tsouth - t); in timelib_astro_rise_set_altitude()
287 *h_set = (tsouth + t); in timelib_astro_rise_set_altitude()
/PHP-7.1/ext/tidy/tests/
H A D021.phpt10 $t = new tidy;
11 var_dump($t->getOptDoc('ncr'));
12 var_dump(strlen(tidy_get_opt_doc($t, 'wrap')) > 99);
/PHP-7.1/ext/date/
H A Dphp_date.c1109 offset->offset = (t->z - (t->dst * 60)) * -60; in date_format()
1218 (zend_long) t->y, (int) t->m, (int) t->d, in date_format()
1219 (int) t->h, (int) t->i, (int) t->s, in date_format()
1226 php_date_short_day_name(t->y, t->m, t->d), in date_format()
1227 (int) t->d, mon_short_names[t->m - 1], in date_format()
1228 (zend_long) t->y, (int) t->h, (int) t->i, (int) t->s, in date_format()
1319 offset->offset = (t->z - (t->dst * 60)) * -60; in php_idate()
1325 offset->offset = (t->z - (t->dst * 60)) * -60; in php_idate()
1338 timelib_isoweek_from_date(t->y, t->m, t->d, &isoweek, &isoyear); in php_idate()
1344 case 'w': retval = (int) timelib_day_of_week(t->y, t->m, t->d); break; in php_idate()
[all …]
/PHP-7.1/ext/mysqli/tests/
H A Dbug63398.phpt27 Warning: mysqli_poll(): [1] Couldn't fetch mysqli in %sbug63398.php on line %d
29 Warning: mysqli_poll(): [1] Couldn't fetch mysqli in %sbug63398.php on line %d
33 Warning: mysqli_poll(): [1] Couldn't fetch mysqli in %sbug63398.php on line %d
35 Warning: mysqli_poll(): [1] Couldn't fetch mysqli in %sbug63398.php on line %d
/PHP-7.1/ext/mbstring/tests/
H A Dbug54494.phpt25 $t = unpack("H*",mb_substr($string, $i, 1, $mode));
26 echo $t[1];
41 $t = unpack("H*",mb_substr($string, $i, 1, $mode));
42 echo $t[1];
/PHP-7.1/ext/sqlite3/tests/
H A Dsqlite3_36_create_collation.phpt12 $db->exec('CREATE TABLE t (s varchar(4))');
14 $stmt = $db->prepare('INSERT INTO t VALUES (?)');
20 $defaultSort = $db->query('SELECT s FROM t ORDER BY s'); //memcmp() sort
21 $naturalSort = $db->query('SELECT s FROM t ORDER BY s COLLATE NAT'); //strnatcmp() sort
/PHP-7.1/ext/intl/tests/
H A Dtransliterator_create_from_rule_basic.phpt14 $t = Transliterator::createFromRules($rules);
15 echo $t->id,"\n";
17 echo $t->transliterate("``akk ``bkk ``aooy"),"\n";
/PHP-7.1/ext/imap/tests/
H A Dbug53377.phpt2 Bug #53377 (imap_mime_header_decode() doesn't ignore \t during long MIME header unfolding)
12 $header = "$s\n $s\n\t$s";
/PHP-7.1/ext/interbase/tests/
H A Dinterbase.inc44 echo join("\t",$r)."\t\n";
54 echo join("\t",$r)."\t\n";
63 echo join("\t",$r)."\t\n";
65 echo "errmsg [" . ibase_errmsg() . "]\t\n";
/PHP-7.1/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-7.1/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()
/PHP-7.1/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.1/ext/standard/
H A Dbrowscap.c157 char *t; in browscap_convert_pattern() local
168 t[j++] = '~'; in browscap_convert_pattern()
169 t[j++] = '^'; in browscap_convert_pattern()
174 t[j] = '.'; in browscap_convert_pattern()
178 t[j] = '*'; in browscap_convert_pattern()
182 t[j] = '.'; in browscap_convert_pattern()
190 t[j] = '('; in browscap_convert_pattern()
194 t[j] = ')'; in browscap_convert_pattern()
210 t[j++] = '$'; in browscap_convert_pattern()
211 t[j++] = '~'; in browscap_convert_pattern()
[all …]

Completed in 57 milliseconds

12345678910>>...70