Searched refs:f2 (Results 1 – 25 of 100) sorted by relevance
1234
/php-src/tests/classes/ |
H A D | type_hinting_004.phpt | 12 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 D | type_hinting_003.phpt | 14 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 D | visibility_002a.phpt | 9 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 D | visibility_002b.phpt | 9 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 D | visibility_002c.phpt | 9 public function f2() {} 19 public function f2() {} 25 function f2() {}
|
/php-src/ext/zlib/tests/ |
H A D | zlib_wrapper_ftruncate_basic.phpt | 8 $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 D | bug79984.phpt | 44 $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/gc/ |
H A D | gc_030.phpt | 16 $f2 = new foo; 17 $f1->foo = $f2; 18 $f2->foo = $f1; 19 unset($f1, $f2);
|
/php-src/ext/odbc/tests/ |
H A D | bug80592.phpt | 12 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 D | enable_post_data_reading_06.phpt | 95 $f2 = fopen("php://input", "r"); 97 while (!feof($f1) && !feof($f2)) { 98 echo fgets($f1), fgets($f2);
|
H A D | enable_post_data_reading_05.phpt | 14 $f2 = fopen("php://input", "r"); 16 while (!feof($f1) && !feof($f2)) { 17 echo fgetc($f1), fgetc($f2);
|
H A D | enable_post_data_reading_07.phpt | 24 $f2 = fopen("php://input", "r"); 25 fseek($f2, 1, SEEK_SET); 27 echo fgetc($f2);
|
/php-src/Zend/tests/fibers/ |
H A D | destructors_001.phpt | 20 global $f2; 21 $f2 = Fiber::getCurrent(); 29 global $f2; 36 $f2->resume();
|
H A D | destructors_007.phpt | 17 global $f2; 18 $f2 = Fiber::getCurrent(); 28 global $f2; 29 $f2->resume();
|
H A D | destructors_009.phpt | 16 global $ref, $f2; 18 $f2 = Fiber::getCurrent(); 32 $f2->resume();
|
H A D | destructors_010.phpt | 16 global $ref, $f2; 18 $f2 = Fiber::getCurrent(); 33 $f2->resume();
|
H A D | destructors_006.phpt | 20 global $f2; 21 $f2 = Fiber::getCurrent(); 40 $f2->resume();
|
H A D | destructors_004.phpt | 20 global $f2; 21 $f2 = Fiber::getCurrent(); 30 global $f2; 39 $f2->resume();
|
/php-src/ext/spl/tests/ |
H A D | bug61697.phpt | 7 function f2($class) { echo "f2: [[$class]]\n"; } 10 spl_autoload_register('f2');
|
/php-src/Zend/tests/generators/ |
H A D | backtrace.phpt | 10 function f2($arg1, $arg2) { 19 $gen = f2('foo', 'bar'); 25 #1 [internal function]: f2('foo', 'bar')
|
/php-src/ext/standard/tests/assert/ |
H A D | assert_basic2.phpt | 11 function f2() 13 echo "f2 called\n"; 24 var_dump($o= assert_options(ASSERT_CALLBACK, "f2")); 49 string(2) "f2" 50 f2 called
|
/php-src/ext/opcache/tests/ |
H A D | gh16186_001.phpt | 26 $f2 = Closure::bind($f, $c); 27 $f2(); 28 $f2();
|
H A D | gh16186_002.phpt | 26 $f2 = Closure::bind($f, $c); 27 $f2(); 28 $f2();
|
/php-src/ext/reflection/tests/ |
H A D | bug78895.phpt | 9 public function f2(); 12 abstract public function f2(); 17 function f2() {}
|
/php-src/Zend/tests/namespaces/ |
H A D | ns_035.phpt | 11 function f2($x = \ArrayObject::STD_PROP_LIST) { 17 f2();
|
Completed in 20 milliseconds
1234