/PHP-7.4/tests/basic/ |
H A D | enable_post_data_reading_07.phpt | 13 fseek($f1, 3, SEEK_SET); 14 echo fgetc($f1); 15 fseek($f1, 1, SEEK_SET); 16 echo fgetc($f1); 17 fseek($f1, 3, SEEK_CUR); 18 echo fgetc($f1); 19 fseek($f1, -3, SEEK_CUR); 20 echo fgetc($f1); 21 fseek($f1, 3, SEEK_END); 22 echo fgetc($f1); [all …]
|
H A D | enable_post_data_reading_06.phpt | 94 $f1 = 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 | 13 $f1 = fopen("php://input", "r"); 16 while (!feof($f1) && !feof($f2)) { 17 echo fgetc($f1), fgetc($f2);
|
/PHP-7.4/ext/oci8/tests/ |
H A D | bind_number.phpt | 53 $f1 = 123.456; 54 oci_bind_by_name($s, ":f1", $f1); 63 oci_bind_by_name($s, ":f1", $f1); 72 oci_bind_by_name($s, ":f1", $f1); 81 oci_bind_by_name($s, ":f1", $f1); 90 oci_bind_by_name($s, ":f1", $f1, -1, SQLT_NUM); 99 oci_bind_by_name($s, ":f1", $f1); 107 $f1 = 589; 108 oci_bind_by_name($s, ":f1", $f1); 116 $f1 = 42; [all …]
|
/PHP-7.4/main/ |
H A D | mergesort.c | 139 f1 = l2; in php_mergesort() 150 q = f1; in php_mergesort() 193 if (q == f1) { in php_mergesort() 285 f1 = list1; in setup() 286 sense = (cmp(f1, f1 + size) > 0); in setup() 299 swap (f1, f1 + size); in setup() 308 f1 = f2; in setup() 313 f1 = f2; in setup() 321 for (f1 = list1, p2 = list2; f1 < last; f1 += size2) { in setup() 323 if (cmp (f1, f1 + size) > 0) in setup() [all …]
|
/PHP-7.4/ext/pdo_mysql/tests/ |
H A D | bug54929.phpt | 29 testQuery("/* ' */ select ? as f1 /* ' */"); 31 testQuery("/* ' */ select ? as f1 --';"); 32 testQuery("/* ' */ select ? as f1 -- 'a;"); 33 testQuery("/*'**/ select ? as f1 /* ' */"); 37 **/ select ? as f1 /* ' */"); 42 ["f1"]=> 46 ["f1"]=> 60 ["f1"]=> 64 ["f1"]=> 68 ["f1"]=> [all …]
|
/PHP-7.4/ext/standard/tests/assert/ |
H A D | assert_basic2.phpt | 6 assert.callback=f1 16 function f1() 18 echo "f1 called\n"; 29 string(2) "f1" 30 f1 called 33 string(2) "f1"
|
H A D | assert_basic.phpt | 6 assert.callback = f1 11 function f1() 13 echo "f1 called\n"; 26 f1 called 31 f1 called
|
H A D | assert_error2.phpt | 6 assert.callback = f1 13 function f1($script, $line, $message, $user_message) 15 echo "f1 called\n"; 29 Fatal error: Uncaught ArgumentCountError: Too few arguments to function f1(), 3 passed and exactly … 31 #0 [internal function]: f1('%s', 9, '0 != 0')
|
H A D | assert_basic3.phpt | 6 assert.callback = f1 11 function f1() 13 echo "f1 called\n"; 25 f1 called
|
H A D | assert_basic6.phpt | 6 assert.callback = f1 11 function f1($message) 13 echo "f1 called\n"; 25 f1 called
|
H A D | assert_basic5.phpt | 6 assert.callback = f1 11 function f1() 13 echo "f1 called\n"; 29 f1 called
|
H A D | assert_basic1.phpt | 6 assert.callback = f1 11 function f1() 13 echo "f1 called\n";
|
/PHP-7.4/tests/classes/ |
H A D | type_hinting_003.phpt | 8 static function f1(array $ar) 33 Test::f1(array(42)); 38 Test::f1(1); 42 Test::f1() 60 Fatal error: Uncaught TypeError: Argument 1 passed to Test::f1() must be of the type array, int giv… 62 #0 %s(%d): Test::f1(1)
|
H A D | type_hinting_004.phpt | 8 function f1(A $a) { 9 echo "in f1;\n"; 15 call_user_func('f1', 1); 20 call_user_func('f1', new A); 47 static function f1(A $a) { 64 call_user_func(array('C', 'f1'), 1); 96 function f1(A $a) { 114 call_user_func(array($d, 'f1'), 1); 149 in f1; 160 in C::f1 (static); [all …]
|
H A D | visibility_001b.phpt | 8 function f1() {} 18 public function f1() {} 25 private function f1() {} 31 Fatal error: Access level to fail::f1() must be public (as in class same) in %s on line 22
|
H A D | visibility_001a.phpt | 8 function f1() {} 18 public function f1() {} 25 protected function f1() {} 31 Fatal error: Access level to fail::f1() must be public (as in class same) in %s on line 22
|
H A D | visibility_001c.phpt | 8 function f1() {} 18 public function f1() {} 25 function f1() {}
|
/PHP-7.4/Zend/tests/ |
H A D | gc_030.phpt | 15 $f1 = new foo; 17 $f1->foo = $f2; 18 $f2->foo = $f1; 19 unset($f1, $f2);
|
/PHP-7.4/ext/spl/tests/ |
H A D | bug61697.phpt | 6 function f1($class) { echo "f1: [[$class]]\n"; } 9 spl_autoload_register('f1');
|
/PHP-7.4/Zend/tests/generators/ |
H A D | backtrace.phpt | 6 function f1() { 11 f1(); 24 #0 f1() called at [%s:%d]
|
/PHP-7.4/ext/standard/tests/dir/ |
H A D | bug72625.phpt | 18 $f1 = "$f0/../../../../../../../../_test/documents/projects/myproject/vendor/name/library/../../../… 30 $f1, 31 file_exists($f1), 32 realpath($f1), 33 dirname($f1)
|
/PHP-7.4/ext/reflection/tests/ |
H A D | ReflectionObject_isInstantiable_basic.phpt | 9 function f1(); 13 function f1() {} 17 function f1() {}
|
H A D | ReflectionClass_isInstantiable_basic.phpt | 9 function f1(); 13 function f1() {} 17 function f1() {}
|
/PHP-7.4/ext/standard/tests/general_functions/ |
H A D | get_defined_vars_basic.phpt | 13 function f1() { 14 echo "\n-- Function f1() called --\n"; 49 $f1 = 456.678; 63 f1(); 73 -- Function f1() called -- 147 ["f1"]=>
|