Home
last modified time | relevance | path

Searched refs:f (Results 101 – 125 of 1042) sorted by relevance

12345678910>>...42

/php-src/ext/opcache/tests/jit/
H A Drecursive_wrong_args.phpt9 function f($arg) {
10 f();
13 f();
19 Too few arguments to function f(), 0 passed in %s on line %d and exactly 1 expected
H A Dcmp_003.phpt16 function f() {
97 var_dump($a == $b || f());
98 var_dump($a != $b || f());
99 var_dump($a < $b || f());
100 var_dump($a > $b || f());
101 var_dump($a <= $b || f());
102 var_dump($a >= $b || f());
109 var_dump($i == $b || f());
110 var_dump($i != $b || f());
111 var_dump($i < $b || f());
[all …]
/php-src/ext/phar/tests/
H A Dphar_oo_012b.phpt20 $phar['f.php'] = 'hi';
21 var_dump(isset($phar['f.php']));
22 echo $phar['f.php'];
24 unset($phar['f.php']);
25 var_dump(isset($phar['f.php']));
H A Dphar_oo_012_confirm.phpt18 $phar['f.php'] = 'hi';
19 var_dump(isset($phar['f.php']));
20 echo $phar['f.php'];
23 unset($phar['f.php']);
26 var_dump(isset($phar['f.php']));
/php-src/ext/standard/tests/general_functions/
H A Dproc_open-mb0.phpt12 $f = __DIR__ . DIRECTORY_SEPARATOR . "proc_only_mb0.php";
13 $f_escaped = escapeshellarg($f);
14 file_put_contents($f,'<?php var_dump($argv); ?>');
23 "$php -n $f_escaped テストマルチバイト・パス füße карамба",
49 string(6) "füße"
H A Dbug49847.phpt8 $f = __DIR__ . '\\bug49847.tmp';
11 file_put_contents($f, $s);
12 exec('type ' . $f, $output);
18 unlink($f);
/php-src/ext/standard/tests/strings/
H A Dbug26973.phpt8 printf("%+05f\n", 200);
9 printf("%+05f\n", -200);
15 printf("%05f\n", 200);
16 printf("%05f\n", -200);
H A Dbug47322.phpt6 sscanf(":59:58","%s:%d:%f", $a, $b, $c);
9 sscanf("15:01:58.2","%d:%f:%f", $a, $b, $c);
12 sscanf("15.1111::foo","%f:%d:%s", $a, $b, $c);
/php-src/Zend/tests/
H A Dbug29104.phpt11 function f()
13 echo "function f\n";
22 f();
27 function f
H A Dbug38146.phpt7 $f = array("foo"=>"bar","bar"=>"foo");
8 return $f;
12 $f = new foo();
13 foreach($f->bar as $key => $value) {
H A Dlist_keyed_evaluation_order_nested.phpt10 $f = new StringCapable("F");
28 // list($a => $b, $c => list($d, $e), $f => list($g => $h, $i => $j)) = $k;
40 // 11. Evaluate $f
41 // 12. Evaluate $k[$f]
43 // 14. Evaluate $k[$f][$g]
44 // 15. Assign $h from $k[$f][$g]
46 // 17. Evaluate $k[$f][$i]
47 // 18. Assign $j from $k[$f][$i]
52 (string)$f => list(
H A Dno_class_const_propagation_in_closures.phpt9 public function f() {
20 $f = (new A)->f();
21 var_dump($f->bindTo(new B, 'B')());
H A Dbug55705.phpt5 function f(callable $c) {}
6 f();
9 Fatal error: Uncaught ArgumentCountError: Too few arguments to function f(), 0 passed in %s on line…
11 #0 %s(%d): f()
/php-src/tests/lang/operators/
H A Dcoalesce.phpt46 function f($x)
52 $a = f(null) ?? f(1) ?? f(2);
78 f(0)
79 f(1)
/php-src/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp1253_to_utf8_0.phpt27 $f = fopen($fn, 'r');
28 if ($f) {
29 var_dump($f, fread($f, 42));
30 var_dump(fclose($f));
H A Dtest_cp1255_to_utf8_0.phpt27 $f = fopen($fn, 'r');
28 if ($f) {
29 var_dump($f, fread($f, 42));
30 var_dump(fclose($f));
H A Dtest_cp1256_to_utf8_0.phpt27 $f = fopen($fn, 'r');
28 if ($f) {
29 var_dump($f, fread($f, 42));
30 var_dump(fclose($f));
H A Dtest_kartuli_utf8_0.phpt27 $f = fopen($fn, 'r');
28 if ($f) {
29 var_dump($f, fread($f, 42));
30 var_dump(fclose($f));
H A Dtest_big5_0.phpt30 $f = fopen($fn, 'r');
31 if ($f) {
32 var_dump($f, fread($f, 42));
33 var_dump(fclose($f));
/php-src/tests/classes/
H A D__set_data_corrupt.phpt5 $f = 'c="foo"';
11 echo $this->t ='f';
23 $f = new foo;
24 $f->bar();
H A Dtype_hinting_005d.phpt5 Class C { function f($a) {} }
8 Class D extends C { function f(array $a) {} }
11 Fatal error: Declaration of D::f(array $a) must be compatible with C::f($a) in %s on line 5
/php-src/tests/lang/
H A Dengine_assignExecutionOrder_002.phpt7 $f = array("hello","item2","bye");
8 list($a,,$b) = $f;
26 // the f++++ makes f into 2, so $e 0 and 1 should both be 30
28 $f = 0;
33 list($e[$f++],$e[$f++]) = $g[2];
86 function f() {
88 $ee = array("array created in f()");
91 $ee["array entry created after f()"][f()] = "hello";
132 [0] => array created in f()
133 [array entry created after f()] => Array
/php-src/ext/standard/tests/array/
H A Dshuffle_variation3.phpt98 float(%f)
100 float(%f)
102 float(%f)
104 float(%f)
106 float(%f)
108 float(%f)
110 float(%f)
119 float(-%f)
121 float(-%f)
123 float(-%f)
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_disasm.c384 fprintf(f, "%s:\n", name);
562 fputs(sym, f);
570 fprintf(f, "%s\n", q);
603 fwrite(p, 1, q - p, f);
610 fwrite(p, 1, r - p, f);
625 fputs(sym, f);
634 fwrite(p, 1, r - p, f);
638 fprintf(f, "%s\n", p);
647 fprintf(f, ".rodata\n");
679 fprintf(f, "\n");
[all …]
/php-src/sapi/cli/tests/
H A Dbug44564.phpt12 var_dump(escapeshellcmd('f{o}<€>'));
13 var_dump(escapeshellarg('f~|;*Þ?'));
19 string(13) "f\{o\}\<€\>"
20 string(10) "'f~|;*Þ?'"

Completed in 43 milliseconds

12345678910>>...42