Home
last modified time | relevance | path

Searched refs:f2 (Results 1 – 25 of 91) sorted by relevance

1234

/php-src/tests/classes/
H A Dtype_hinting_004.phpt12 echo "in f2;\n";
30 call_user_func('f2');
157 in f2;
158 in f2;
159 in f2;
168 in C::f2 (static);
169 in C::f2 (static);
170 in C::f2 (static);
179 in C::f2 (instance);
180 in C::f2 (instance);
[all …]
H A Dtype_hinting_003.phpt14 static function f2(array $ar = NULL)
34 Test::f2(NULL);
35 Test::f2();
42 Deprecated: Test::f2(): Implicitly marking parameter $ar as nullable is deprecated, the explicit nu…
48 Test::f2()
50 Test::f2()
H A Dvisibility_002a.phpt9 public function f2() {}
19 public function f2() {}
25 protected function f2() {}
31 Fatal error: Access level to fail::f2() must be public (as in class same) in %s on line 22
H A Dvisibility_002b.phpt9 public function f2() {}
19 public function f2() {}
25 private function f2() {}
31 Fatal error: Access level to fail::f2() must be public (as in class same) in %s on line 22
H A Dvisibility_002c.phpt9 public function f2() {}
19 public function f2() {}
25 function f2() {}
H A Dvisibility_003c.phpt9 public function f2() {}
19 public function f2() {}
H A Dvisibility_004c.phpt9 public function f2() {}
19 public function f2() {}
H A Dvisibility_000c.phpt9 public function f2() {}
19 public function f2() {}
/php-src/ext/zlib/tests/
H A Dzlib_wrapper_ftruncate_basic.phpt8 $f2 = "zlib_wrapper_ftruncate_basic.txt.gz";
9 copy($f, $f2);
11 $h = gzopen($f2, "r");
14 unlink($f2);
16 $h = gzopen($f2, "w");
19 unlink($f2);
/php-src/ext/standard/tests/streams/
H A Dbug79984.phpt44 $f2 = fopen('php://temp', 'r+b');
45 fwrite($f2, $str);
46 fseek($f2, 0, SEEK_SET);
47 stream_filter_append($f2, 'f', STREAM_FILTER_READ);
48 var_dump(strlen(stream_get_contents($f2)));
49 fclose($f2);
/php-src/Zend/tests/
H A Dgc_030.phpt16 $f2 = new foo;
17 $f1->foo = $f2;
18 $f2->foo = $f1;
19 unset($f1, $f2);
H A Dns_035.phpt11 function f2($x = \ArrayObject::STD_PROP_LIST) {
17 f2();
H A Dbug34062.phpt6 function f2() { echo "here\n"; }
16 f2(0, 0, 0); // Won't crash if less than 3 zeros here
/php-src/ext/odbc/tests/
H A Dbug80592.phpt12 odbc_exec($conn,"CREATE TABLE bug80592 (f1 float not null, f2 float not null, f3 float not null)");
13 $stmt = odbc_prepare($conn, "INSERT INTO bug80592 (f1, f2, f3) values (?, ?, ?)");
15 $res = odbc_exec($conn, "SELECT f1, f2, f3 from bug80592");
29 ["f2"]=>
/php-src/tests/basic/
H A Denable_post_data_reading_06.phpt95 $f2 = fopen("php://input", "r");
97 while (!feof($f1) && !feof($f2)) {
98 echo fgets($f1), fgets($f2);
H A Denable_post_data_reading_05.phpt14 $f2 = fopen("php://input", "r");
16 while (!feof($f1) && !feof($f2)) {
17 echo fgetc($f1), fgetc($f2);
H A Denable_post_data_reading_07.phpt24 $f2 = fopen("php://input", "r");
25 fseek($f2, 1, SEEK_SET);
27 echo fgetc($f2);
/php-src/ext/spl/tests/
H A Dbug61697.phpt7 function f2($class) { echo "f2: [[$class]]\n"; }
10 spl_autoload_register('f2');
/php-src/Zend/tests/generators/
H A Dbacktrace.phpt10 function f2($arg1, $arg2) {
19 $gen = f2('foo', 'bar');
25 #1 [internal function]: f2('foo', 'bar')
/php-src/ext/standard/tests/assert/
H A Dassert_basic2.phpt11 function f2()
13 echo "f2 called\n";
24 var_dump($o= assert_options(ASSERT_CALLBACK, "f2"));
49 string(2) "f2"
50 f2 called
H A Dassert_variation.phpt15 function f2()
17 echo "f2 called\n";
36 var_dump($rv = ini_set("assert.callback","f2"));
104 assert_options(ASSERT_CALLBACK) => [f2]
105 ini.get("assert.callback") => [f2]
106 f2 called
114 string(2) "f2"
120 ini.get("assert.callback") => [f2]
135 ini.get("assert.callback") => [f2]
154 ini.get("assert.callback") => [f2]
[all …]
/php-src/ext/reflection/tests/
H A Dbug78895.phpt9 public function f2();
12 abstract public function f2();
17 function f2() {}
/php-src/ext/standard/tests/file/
H A Dbug81145.phpt38 $f2 = fopen($dst,'rb') or die("dst open failed");
42 fseek($f2, SIZE_4G - 0x100, SEEK_SET);
43 echo (fread($f1,0x200) === fread($f2,0x200) ? "Identical" : "Copy failed");
45 fclose($f2);
/php-src/ext/opcache/tests/
H A Dpreload_001.phpt17 var_dump(function_exists("f2"));
21 var_dump(function_exists("f2"));
/php-src/ext/standard/tests/general_functions/
H A Dget_defined_vars_basic.phpt22 f2();
25 function f2() {
26 echo "\n -- Function f2() called --\n";
94 -- Function f2() called --

Completed in 32 milliseconds

1234