Home
last modified time | relevance | path

Searched refs:f1 (Results 1 – 25 of 94) sorted by relevance

1234

/PHP-8.1/tests/basic/
H A Denable_post_data_reading_07.phpt13 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 Denable_post_data_reading_06.phpt94 $f1 = fopen("php://input", "r");
97 while (!feof($f1) && !feof($f2)) {
98 echo fgets($f1), fgets($f2);
H A Denable_post_data_reading_05.phpt13 $f1 = fopen("php://input", "r");
16 while (!feof($f1) && !feof($f2)) {
17 echo fgetc($f1), fgetc($f2);
/PHP-8.1/ext/oci8/tests/
H A Dbind_number.phpt51 $f1 = 123.456;
52 oci_bind_by_name($s, ":f1", $f1);
61 oci_bind_by_name($s, ":f1", $f1);
70 oci_bind_by_name($s, ":f1", $f1);
79 oci_bind_by_name($s, ":f1", $f1);
88 oci_bind_by_name($s, ":f1", $f1, -1, SQLT_NUM);
97 oci_bind_by_name($s, ":f1", $f1);
105 $f1 = 589;
106 oci_bind_by_name($s, ":f1", $f1);
114 $f1 = 42;
[all …]
/PHP-8.1/ext/pdo_mysql/tests/
H A Dbug54929.phpt30 testQuery("/* ' */ select ? as f1 /* ' */");
32 testQuery("/* ' */ select ? as f1 --';");
33 testQuery("/* ' */ select ? as f1 -- 'a;");
34 testQuery("/*'**/ select ? as f1 /* ' */");
38 **/ select ? as f1 /* ' */");
43 ["f1"]=>
47 ["f1"]=>
61 ["f1"]=>
65 ["f1"]=>
69 ["f1"]=>
[all …]
/PHP-8.1/ext/standard/tests/assert/
H A Dassert_basic2.phpt6 assert.callback=f1
16 function f1()
18 echo "f1 called\n";
29 string(2) "f1"
30 f1 called
33 string(2) "f1"
H A Dassert_basic.phpt6 assert.callback = f1
11 function f1()
13 echo "f1 called\n";
20 f1 called
H A Dassert_basic3.phpt6 assert.callback = f1
11 function f1()
13 echo "f1 called\n";
23 f1 called
H A Dassert_error2.phpt6 assert.callback = f1
13 function f1($script, $line, $message, $user_message)
15 echo "f1 called\n";
25 f1 called
H A Dassert_basic5.phpt6 assert.callback = f1
11 function f1()
13 echo "f1 called\n";
26 f1 called
H A Dassert_basic1.phpt6 assert.callback = f1
10 function f1()
12 echo "f1 called\n";
H A Dassert_basic6.phpt8 function f1()
13 assert_options(ASSERT_CALLBACK, "f1");
35 string(2) "f1"
/PHP-8.1/tests/classes/
H A Dtype_hinting_004.phpt8 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 Dtype_hinting_003.phpt8 static function f1(array $ar)
33 Test::f1(array(42));
38 Test::f1(1);
42 Test::f1()
60 Fatal error: Uncaught TypeError: Test::f1(): Argument #1 ($ar) must be of type array, int given, ca…
62 #0 %s(%d): Test::f1(1)
H A Dvisibility_001a.phpt8 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 Dvisibility_001b.phpt8 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 Dvisibility_001c.phpt8 function f1() {}
18 public function f1() {}
25 function f1() {}
/PHP-8.1/Zend/tests/
H A Dgc_030.phpt15 $f1 = new foo;
17 $f1->foo = $f2;
18 $f2->foo = $f1;
19 unset($f1, $f2);
H A D009.phpt23 $f1 = new foo;
26 $f1->bar();
40 var_dump(get_class($f1));
43 $f1->testNull();
/PHP-8.1/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");
27 ["f1"]=>
/PHP-8.1/ext/spl/tests/
H A Dbug61697.phpt6 function f1($class) { echo "f1: [[$class]]\n"; }
9 spl_autoload_register('f1');
/PHP-8.1/Zend/tests/generators/
H A Dbacktrace.phpt6 function f1() {
11 f1();
24 #0 %s(%d): f1()
/PHP-8.1/ext/standard/tests/general_functions/
H A Dget_defined_vars_basic.phpt7 function f1() {
8 echo "\n-- Function f1() called --\n";
43 $f1 = 456.678;
57 f1();
66 -- Function f1() called --
140 ["f1"]=>
/PHP-8.1/ext/standard/tests/dir/
H A Dbug72625.phpt18 $f1 = "$f0/../../../../../../../../_test/documents/projects/myproject/vendor/name/library/../../../…
30 $f1,
31 file_exists($f1),
32 realpath($f1),
33 dirname($f1)
/PHP-8.1/ext/reflection/tests/
H A DReflectionObject_isInstantiable_basic.phpt9 function f1();
13 function f1() {}
17 function f1() {}

Completed in 26 milliseconds

1234