Home
last modified time | relevance | path

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

12345678910>>...63

/PHP-5.5/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_014.phpt11 $t = new test;
12 $t->__clone();
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();
H A Dmagic_by_ref_007.phpt10 $t = new test;
14 $t->$func($arg);
/PHP-5.5/ext/standard/
H A Dcrypt_sha512.c170 unsigned int t; in sha512_process_block() local
185 for (t = 0; t < 16; ++t) { in sha512_process_block()
186 W[t] = SWAP (*words); in sha512_process_block()
190 for (t = 16; t < 80; ++t) { in sha512_process_block()
191 W[t] = R1 (W[t - 2]) + W[t - 7] + R0 (W[t - 15]) + W[t - 16]; in sha512_process_block()
195 for (t = 0; t < 80; ++t) { in sha512_process_block()
196 uint64_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t]; in sha512_process_block()
/PHP-5.5/ext/standard/tests/general_functions/
H A Dgetopt.phpt4 -v -h -d test -m 1234 -t -j
22 ["t"]=>
/PHP-5.5/ext/json/tests/
H A Dbug64695.phpt7 $t = array('test' => '123343e871700');
8 var_dump(json_encode($t, JSON_NUMERIC_CHECK));
/PHP-5.5/ext/intl/tests/
H A Didn.phpt12 echo idn_to_ascii("t\xC3\xA4st.de")."\n";
18 t%C3%A4st.de
/PHP-5.5/ext/mbstring/tests/
H A Dmb_strstr_basic.phpt30 echo "\n-- ASCII string: needle doesn't exist --\n";
40 echo "\n-- Multibyte string: needle doesn't exist --\n";
54 -- ASCII string: needle doesn't exist --
62 -- Multibyte string: needle doesn't exist --
/PHP-5.5/ext/standard/tests/file/
H A Dglob_basic.phpt30 sort_var_dump( glob($dirname."/*.t?t") );
31 sort_var_dump( glob($dirname."/*.t*t") );
H A Dfgetcsv_variation21.phpt20 $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",
21 "a+", "a+b", "a+t",
22 "w+", "w+b", "w+t",
23 "x+", "x+b", "x+t");
112 -- Testing fgetcsv() with file opened using r+t mode --
136 -- Testing fgetcsv() with file opened using a+t mode --
160 -- Testing fgetcsv() with file opened using w+t mode --
184 -- Testing fgetcsv() with file opened using x+t mode --
H A Dfputcsv_variation13.phpt97 -- file opened in r+t --
124 -- file opened in a+t --
151 -- file opened in w+t --
178 -- file opened in x+t --
205 -- file opened in r+t --
232 -- file opened in a+t --
259 -- file opened in w+t --
286 -- file opened in x+t --
313 -- file opened in r+t --
340 -- file opened in a+t --
[all …]
H A Dfgetcsv_variation16.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");
140 -- Testing fgetcsv() with file opened using r+t mode --
170 -- Testing fgetcsv() with file opened using a+t mode --
200 -- Testing fgetcsv() with file opened using w+t mode --
230 -- Testing fgetcsv() with file opened using x+t mode --
290 -- Testing fgetcsv() with file opened using r+t mode --
320 -- Testing fgetcsv() with file opened using a+t mode --
[all …]
H A Dfgetcsv_variation15.phpt28 $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",
29 "a+", "a+b", "a+t",
30 "w+", "w+b", "w+t",
31 "x+", "x+b", "x+t");
136 -- Testing fgetcsv() with file opened using r+t mode --
166 -- Testing fgetcsv() with file opened using a+t mode --
196 -- Testing fgetcsv() with file opened using w+t mode --
226 -- Testing fgetcsv() with file opened using x+t mode --
286 -- Testing fgetcsv() with file opened using r+t mode --
316 -- Testing fgetcsv() with file opened using a+t mode --
[all …]
H A Dfgetcsv_variation11.phpt33 $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",
34 "a+", "a+b", "a+t",
35 "w+", "w+b", "w+t",
36 "x+", "x+b", "x+t");
146 -- Testing fgetcsv() with file opened using r+t mode --
176 -- Testing fgetcsv() with file opened using a+t mode --
206 -- Testing fgetcsv() with file opened using w+t mode --
236 -- Testing fgetcsv() with file opened using x+t mode --
296 -- Testing fgetcsv() with file opened using r+t mode --
326 -- Testing fgetcsv() with file opened using a+t mode --
[all …]
/PHP-5.5/sapi/cli/tests/
H A Dphp_cli_server.inc21 $cmd = "{$php_executable} -t {$doc_root} -n -S " . PHP_CLI_SERVER_ADDRESS;
28 $cmd = "exec {$php_executable} -t {$doc_root} -n -S " . PHP_CLI_SERVER_ADDRESS;
55 // don't bother sleeping, server is already up
58 // sleeping doesn't work.
/PHP-5.5/tests/classes/
H A Dctor_dtor_inheritance.phpt49 $t = new base();
50 unset($t);
52 $t = new derived();
53 unset($t);
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_control_string.phpt13 die("skip: can't say for sure if mysqli_debug works");
65 $trace = try_control_string($link, 't:O,' . $trace_file, $trace_file, 10);
71 $trace = try_control_string($link, 't:O,' . $trace_file . ':T', $trace_file, 20);
80 $trace = try_control_string($link, 't:O,' . $trace_file . ':i', $trace_file, 30);
85 $trace = try_control_string($link, 't:O,' . $trace_file . ':L', $trace_file, 40);
90 $trace = try_control_string($link, 't:O,' . $trace_file . ':F', $trace_file, 50);
96 $trace = try_control_string($link, 't:O,' . $trace_file . ':n', $trace_file, 60);
100 // -t,[N] - maximum nesting level
101 $trace = try_control_string($link, 't,1:n:O,' . $trace_file, $trace_file, 70);
116 // omitting t
[all …]
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput1731 / (?: [\040\t] | \(
58 (?: [\040\t] | \(
70 (?: [\040\t] | \(
73 (?: [\040\t] | \(
121 (?: [\040\t] | \(
124 (?: [\040\t] | \(
149 (?: [\040\t] | \(
152 (?: [\040\t] | \(
164 (?: [\040\t] | \(
191 (?: [\040\t] | \(
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dpack_A.phpt9 unpack("A*", "foo\0\rbar\0 \t\r\n"),
10 unpack("A4", "foo\0\rbar\0 \t\r\n")

Completed in 62 milliseconds

12345678910>>...63