Home
last modified time | relevance | path

Searched refs:f (Results 251 – 275 of 1042) sorted by relevance

1...<<11121314151617181920>>...42

/php-src/ext/opcache/tests/jit/
H A Didentical_002.phpt16 function f() {
84 var_dump($a === $b || f());
85 var_dump($a === $c || f());
86 var_dump($a === $d || f());
87 var_dump($a !== $b || f());
88 var_dump($a !== $c || f());
89 var_dump($a !== $d || f());
/php-src/ext/reflection/tests/
H A DReflectionMethod_getDocComment_basic.phpt12 * My Doc Comment for A::f
14 function f() {}
35 function f() {}
67 ---> Doc comment for A::f():
69 * My Doc Comment for A::f
90 ---> Doc comment for B::f():
H A DReflectionProperty_getDocComment_basic.phpt21 * Doc comment for $f
23 static protected $f;
70 ---> Doc comment for A::$f:
72 * Doc comment for $f
98 ---> Doc comment for B::$f:
100 * Doc comment for $f
/php-src/Zend/tests/nullable_types/
H A Dnullable_type_parameters_do_not_have_default_value.phpt6 function f(?callable $p) {}
8 f();
11 Fatal error: Uncaught ArgumentCountError: Too few arguments to function f(), 0 passed in %snullable…
/php-src/Zend/tests/
H A Dbug43344_5.phpt6 function f($a=array(Foo::bar=>0)) {
10 echo f()."\n";
15 #0 %s(%d): Foo\f()
H A Dbug43344_9.phpt6 function f($a=array(namespace\bar=>0)) {
10 echo f()."\n";
15 #0 %s(%d): Foo\f()
H A Dgc_045.phpt67 float(%f)
69 float(%f)
71 float(%f)
73 float(%f)
H A Dparent_class_name_without_parent.phpt7 public function f() {
16 (new C)->f();
22 #0 %s(%d): C->f()
H A Ddebug_info.phpt9 private $f = 6;
24 $f = new Foo;
25 var_dump($f);
/php-src/Zend/tests/generators/
H A Dgh9750-006.phpt6 function f(...$x) {
16 f(a: $gen, b: f(c: yield));
/php-src/ext/zend_test/tests/
H A Dstrings_marked_as_utf8.phpt22 $f = 26.7;
23 $s = (string) $f;
26 $f = 2e100;
27 $s = (string) $f;
32 $s1 = "f";
39 $s1 = "f";
46 $s = "f" . "o";
65 $s1 = "f";
69 $s1 = "f";
75 $s = "f" . "";
[all …]
/php-src/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp1250_to_utf8_5.phpt27 $f = fopen($fn, 'w');
28 if ($f) {
29 var_dump($f, fwrite($f, "writing to an mb filename"));
30 var_dump(fclose($f));
H A Dtest_cp932_2.phpt30 $f = fopen($fn, 'w');
31 if ($f) {
32 var_dump($f, fwrite($f, "writing to an mb filename"));
33 var_dump(fclose($f));
/php-src/ext/standard/tests/filters/
H A Dread.phpt27 if ($f = fopen(__FILE__, "rb")) {
28 stream_filter_append($f, "strtoupper");
29 while (!feof($f)) {
30 echo fread($f, 8192);
32 fclose($f);
/php-src/ext/zlib/tests/
H A Dzlib_wrapper_meta_data_basic.phpt8 $f = __DIR__."/004.txt.gz";
9 $h = gzopen($f,'r');
13 $f = "compress.zlib://".__DIR__."/004.txt.gz";
14 $h = fopen($f,'r');
H A Dgzseek_basic2.phpt7 $f = "gzseek_basic2.gz";
8 $h = gzopen($f, 'w');
21 $h = gzopen($f, 'r');
26 unlink($f);
H A Dgzseek_variation4.phpt7 $f = "gzseek_variation4.gz";
8 $h = gzopen($f, 'w');
21 $h = gzopen($f, 'r');
26 unlink($f);
H A Dgzseek_variation5.phpt7 $f = "gzseek_variation5.gz";
8 $h = gzopen($f, 'w');
21 $h = gzopen($f, 'r');
26 unlink($f);
/php-src/ext/standard/tests/streams/
H A Dbug78662.phpt25 $f=fopen('fails://foo', 'a+');
26 var_dump(fwrite($f, "bar"));
27 var_dump(fread($f, 100));
H A Dbug60455_02.phpt25 $f = fopen("test://", "r");
26 while (!feof($f)) {
27 $line = stream_get_line($f, 99, "\n");
/php-src/ext/opcache/tests/opt/
H A Dsccp_040.phpt9 function f() {
13 f();
20 #0 %ssccp_040.php(6): f()
/php-src/tests/classes/
H A Dconstants_error_003.phpt10 function f(&$a)
15 f(aclass::myConst);
19 Fatal error: Uncaught Error: f(): Argument #1 ($a) could not be passed by reference in %s:%d
/php-src/ext/standard/tests/math/
H A Dacos_basic.phpt61 acos .5 = float(%f)
63 acos 0.86602540378444 = float(%f)
65 acos 1.0 = float(%f)
67 acos 0.0 = float(%f)
H A Dasin_basic.phpt60 asin .5 = float(%f)
62 asin 0.86602540378444 = float(%f)
64 asin 1.0 = float(%f)
66 asin 0.0 = float(%f)
/php-src/ext/phar/tests/
H A Dphar_oo_011.phpt18 $phar['hi/f.php'] = 'hi';
20 var_dump(isset($phar['hi/f.php']));
21 echo $phar['hi/f.php'];

Completed in 29 milliseconds

1...<<11121314151617181920>>...42