Home
last modified time | relevance | path

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

12345

/PHP-7.0/ext/oci8/tests/
H A Dbind_number.phpt53 $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.0/main/
H A Dmergesort.c141 f1 = l2; in php_mergesort()
152 q = f1; in php_mergesort()
195 if (q == f1) { in php_mergesort()
287 f1 = list1; in setup()
288 sense = (cmp(f1, f1 + size) > 0); in setup()
301 swap (f1, f1 + size); in setup()
310 f1 = f2; in setup()
315 f1 = f2; in setup()
323 for (f1 = list1, p2 = list2; f1 < last; f1 += size2) { in setup()
325 if (cmp (f1, f1 + size) > 0) in setup()
[all …]
/PHP-7.0/ext/soap/interop/
H A Dtest.utility.php29 function date_compare($f1,$f2) argument
31 return soap_datetime_to_timestamp($f1) == soap_datetime_to_timestamp($f2);
34 function hex_compare($f1, $f2) argument
36 return strcasecmp($f1,$f2) == 0;
39 function number_compare($f1, $f2) argument
42 preg_match('/.*?\.(.*)/',$f1,$m1);
47 $f1 = round($f1, $d);
49 return $f1 == $f2;
53 function boolean_compare($f1, $f2) argument
55 if (($f1 == 'true' || $f1 === TRUE || $f1 != 0) &&
[all …]
/PHP-7.0/ext/pdo_mysql/tests/
H A Dbug54929.phpt29 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.0/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";
25 f1 called
28 f1 called
H A Dassert_error2.phpt6 assert.callback = f1
13 function f1($script, $line, $message, $user_message)
15 echo "f1 called\n";
25 Warning: Missing argument 4 for f1() in %s on line 2
26 f1 called
H A Dassert_basic3.phpt6 assert.callback = f1
11 function f1()
13 echo "f1 called\n";
23 f1 called
H A Dassert_basic6.phpt6 assert.callback = f1
11 function f1($message)
13 echo "f1 called\n";
23 f1 called
H A Dassert_basic5.phpt6 assert.callback = f1
11 function f1()
13 echo "f1 called\n";
27 f1 called
H A Dassert_error1.phpt6 assert.callback = f1
11 function f1()
13 echo "f1 called\n";
23 var_dump($rao = assert_options(ASSERT_CALLBACK, "f1", 1));
27 var_dump($rao=assert_options("F1", "f1"));
H A Dassert_basic1.phpt6 assert.callback = f1
11 function f1()
13 echo "f1 called\n";
H A Dassert_error.phpt6 assert.callback = f1
11 function f1()
13 echo "f1 called\n";
/PHP-7.0/tests/classes/
H A Dtype_hinting_004.phpt13 function f1(A $a) {
14 echo "in f1;\n";
20 call_user_func('f1', 1);
25 call_user_func('f1', new A);
52 static function f1(A $a) {
69 call_user_func(array('C', 'f1'), 1);
101 function f1(A $a) {
119 call_user_func(array($d, 'f1'), 1);
154 in f1;
165 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: Argument 1 passed to Test::f1() must be of the type array, integer…
62 #0 %s(%d): Test::f1(1)
H A Dvisibility_001a.phpt10 function f1() {}
20 public function f1() {}
27 protected function f1() {}
33 Fatal error: Access level to fail::f1() must be public (as in class same) in %s on line %d
H A Dvisibility_001b.phpt10 function f1() {}
20 public function f1() {}
27 private function f1() {}
33 Fatal error: Access level to fail::f1() must be public (as in class same) in %s on line %d
/PHP-7.0/Zend/tests/
H A Dgc_030.phpt15 $f1 = new foo;
17 $f1->foo = $f2;
18 $f2->foo = $f1;
19 unset($f1, $f2);
/PHP-7.0/tests/basic/
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-7.0/ext/spl/tests/
H A Dbug61697.phpt6 function f1($class) { echo "f1: [[$class]]\n"; }
9 spl_autoload_register('f1');
/PHP-7.0/Zend/tests/generators/
H A Dbacktrace.phpt6 function f1() {
11 f1();
24 #0 f1() called at [%s:%d]
/PHP-7.0/ext/reflection/tests/
H A DReflectionObject_isInstantiable_basic.phpt9 function f1();
13 function f1() {}
17 function f1() {}
H A DReflectionClass_isInstantiable_basic.phpt9 function f1();
13 function f1() {}
17 function f1() {}
/PHP-7.0/ext/standard/tests/general_functions/
H A Dget_defined_vars_basic.phpt13 function f1() {
14 echo "\n-- Function f1() called --\n";
49 $f1 = 456.678;
63 f1();
73 -- Function f1() called --
147 ["f1"]=>

Completed in 69 milliseconds

12345