Home
last modified time | relevance | path

Searched refs:t (Results 201 – 225 of 1771) sorted by relevance

12345678910>>...71

/PHP-7.4/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 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 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 string(%d) "Table '%s.test' doesn't exist"
/PHP-7.4/ext/opcache/tests/
H A Dbug76094.phpt11 function MetaType($t)
14 switch (strtoupper($t)) {
/PHP-7.4/ext/date/tests/
H A Dbug34676.phpt12 $t = strtotime("2005-12-22 ". $test);
13 printf("%-10s => %s\n", $test, date(DATE_ISO8601, $t));
/PHP-7.4/ext/bcmath/tests/
H A Dbcpowmod_error4.phpt2 bc_raisemod's mod can't be zero and expo can't be negative
/PHP-7.4/Zend/tests/
H A Derrmsg_004.phpt2 errmsg: can't use function return value in write context
15 Fatal error: Can't use function return value in write context in %s on line %d
H A Derrmsg_003.phpt13 $t = new test;
14 $t->foo();
H A Dmagic_by_ref_002.phpt10 $t = new test;
11 $t->prop = 1;
H A Dmagic_by_ref_003.phpt10 $t = new test;
12 var_dump($t->$name);
H A Dmagic_by_ref_004.phpt10 $t = new test;
13 var_dump($t->$name);
H A Dmagic_by_ref_001.phpt10 $t = new test;
12 $t->$name = 1;
H A Dmagic_by_ref_005.phpt10 $t = new test;
13 var_dump(isset($t->$name));
H A Dmagic_by_ref_006.phpt10 $t = new test;
13 $t->$func();
/PHP-7.4/ext/standard/tests/array/
H A Darray_unshift_variation8.phpt24 '\t\r\v The quick brown fo\fx jumped over the lazy dog',
26 'hello world\\t',
27 'This is \ta text in bold letters\r\s\malong with slashes\n : HELLO WORLD\t'
94 string(53) "\t\r\v The quick brown fo\fx jumped over the lazy dog"
107 string(53) "\t\r\v The quick brown fo\fx jumped over the lazy dog"
156 string(13) "hello world\t"
169 string(13) "hello world\t"
187 string(74) "This is \ta text in bold letters\r\s\malong with slashes\n : HELLO WORLD\t"
200 string(74) "This is \ta text in bold letters\r\s\malong with slashes\n : HELLO WORLD\t"
/PHP-7.4/ext/standard/tests/strings/
H A Dhtml_entity_decode_win1252.phpt41 echo "Special test for  (shouldn't decode):\n";
45 echo "Special test for  (shouldn't decode):\n";
49 echo "Special test for  (shouldn't decode):\n";
53 echo "Special test for  (shouldn't decode):\n";
57 echo "Special test for  (shouldn't decode):\n";
73 Special test for  (shouldn't decode):
76 Special test for  (shouldn't decode):
79 Special test for  (shouldn't decode):
82 Special test for  (shouldn't decode):
85 Special test for  (shouldn't decode):
/PHP-7.4/ext/standard/tests/general_functions/
H A Dgetopt.phpt4 -v -h -d test -m 1234 -t -j
22 ["t"]=>
/PHP-7.4/ext/json/tests/
H A Dbug64695.phpt7 $t = array('test' => '123343e871700');
8 var_dump(json_encode($t, JSON_NUMERIC_CHECK));
/PHP-7.4/ext/intl/tests/
H A Didn.phpt12 echo idn_to_ascii("t\xC3\xA4st.de")."\n";
18 t%C3%A4st.de
H A Dsymfony_format_type_int32_intl2.phpt9 // there are 7 sets of args that crash PHP (and other args that don't), each of those 7 is now a se…
20 echo "== didn't crash ==".PHP_EOL;
33 == didn't crash ==
H A Dtransliterator_create_from_rule_error.phpt9 $t = Transliterator::createFromRules();
12 $t = Transliterator::createFromRules("a","b");
15 $t = Transliterator::createFromRules("\x8Fss");
23 $t = Transliterator::createFromRules($rules);
30 $t = Transliterator::createFromRules($rules);
/PHP-7.4/ext/standard/
H A Dcrypt_sha256.c100 unsigned int t; in sha256_process_block() local
145 for (t = 0; t < 16; ++t) { in sha256_process_block()
146 W[t] = SWAP (*words); in sha256_process_block()
149 for (t = 16; t < 64; ++t) in sha256_process_block()
150 W[t] = R1 (W[t - 2]) + W[t - 7] + R0 (W[t - 15]) + W[t - 16]; in sha256_process_block()
153 for (t = 0; t < 64; ++t) { in sha256_process_block()
154 uint32_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t]; in sha256_process_block()
/PHP-7.4/ext/standard/tests/file/
H A Dfgetcsv_variation18.phpt30 $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",
31 "a+", "a+b", "a+t",
32 "w+", "w+b", "w+t",
33 "x+", "x+b", "x+t");
131 -- Testing fgetcsv() with file opened using r+t mode --
155 -- Testing fgetcsv() with file opened using a+t mode --
179 -- Testing fgetcsv() with file opened using w+t mode --
203 -- Testing fgetcsv() with file opened using x+t mode --
251 -- Testing fgetcsv() with file opened using r+t mode --
275 -- Testing fgetcsv() with file opened using a+t mode --
[all …]
/PHP-7.4/tests/classes/
H A Dctor_dtor_inheritance.phpt47 $t = new base();
48 unset($t);
50 $t = new derived();
51 unset($t);
/PHP-7.4/sapi/fpm/fpm/events/
H A Dkqueue.c119 struct timespec t; in fpm_event_kqueue_wait() local
126 t.tv_sec = timeout / 1000; in fpm_event_kqueue_wait()
127 t.tv_nsec = (timeout % 1000) * 1000 * 1000; in fpm_event_kqueue_wait()
130 ret = kevent(kfd, NULL, 0, kevents, nkevents, &t); in fpm_event_kqueue_wait()
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_xclass.c71 PCRE2_UCHAR t; in PRIV() local
101 while ((t = *data++) != XCL_END) in PRIV()
104 if (t == XCL_SINGLE) in PRIV()
116 else if (t == XCL_RANGE) in PRIV()
137 BOOL isprop = t == XCL_PROP; in PRIV()
/PHP-7.4/ext/mysqli/tests/
H A Dbug66124.phpt36 printf("Can't prepare\n");
46 printf("Can't execute\n");
58 printf("Can't select\n");
76 printf("Can't execute\n");
87 printf("Can't select\n");

Completed in 52 milliseconds

12345678910>>...71