Home
last modified time | relevance | path

Searched refs:f (Results 301 – 325 of 1080) sorted by relevance

1...<<11121314151617181920>>...44

/php-src/Zend/tests/
H A Dbug75079_2.phpt20 $f = Foo::test();
22 var_dump($f()());
26 var_dump($f->bindTo($a, A::CLASS)()());
H A Dgh15275-004.phpt21 function f() {
25 $gen = f();
41 #1 [internal function]: f()
H A Dbug70293.phpt8 function f() {
12 f();
/php-src/ext/reflection/tests/
H A D019.phpt5 $f = new ReflectionFunction("sleep");
6 var_dump($f->getExtensionName());
/php-src/ext/standard/tests/streams/
H A Dbug60455_01.phpt15 $f = $sockets[1];
16 while (!feof($f)) {
17 $line = stream_get_line($f, 99, "\n");
H A Dbug60817.phpt26 $f = fopen("test://", "r");
27 while (!feof($f)) {
28 $line = stream_get_line($f, 99, "\n");
/php-src/ext/filter/tests/
H A D046.phpt25 $f = filter_var($val, FILTER_VALIDATE_INT);
26 echo "$msg filtered: "; var_dump($f); // filtered value (or false)
27 echo "$msg is_long: "; var_dump(is_long($f)); // test validation
28 echo "$msg equal: "; var_dump($val == $f); // test equality of result
/php-src/ext/standard/tests/general_functions/
H A Disset_basic2.phpt10 $f = 10.5;
16 var_dump(isset($i, $f, $s, $b));
17 var_dump(isset($i, $f, $s, $b, $n));
23 var_dump(isset($i, $f, $s, $b));
/php-src/Zend/tests/in-de-crement/
H A Dincrement_with_castable_objects_no_addition.phpt9 $f = new FloatCastableNoOperations(15.8);
21 var_dump($f + 1);
47 $f++;
48 var_dump($f);
H A Ddecrement_with_castable_objects_no_subtraction.phpt9 $f = new FloatCastableNoOperations(15.8);
21 var_dump($f - 1);
47 $f--;
48 var_dump($f);
/php-src/Zend/tests/type_declarations/
H A Dscalar_null.phpt8 'float' => function (float $f) { return $f; },
12 'float nullable' => function (?float $f) { return $f; },
32 *** Caught {closure:%s:%d}(): Argument #1 ($f) must be of type float, null given, called in %s on l…
H A Dclosure_with_variadic.phpt5 $f = function (stdClass ...$a) {
8 $f(new stdClass);
H A Dtyped_properties_055.phpt12 $f = function (&$n) {
18 $f($o->a->foo);
19 $f($o->a->bar);
/php-src/ext/fileinfo/tests/
H A Dbug81723.phpt9 $f = finfo_open();
10 finfo_buffer($f, $data);
/php-src/ext/standard/tests/strings/
H A Dbug28633.phpt5 echo sprintf("%05.2f", 0.02) . "\n";
6 echo sprintf("%05.2f", 2.02) . "\n";
/php-src/ext/zlib/tests/
H A Dgztell_basic2.phpt7 $f = "gztell_basic2.txt.gz";
8 $h = gzopen($f, 'w');
19 unlink($f);
H A Dgzseek_variation7.phpt7 $f = "gzseek_variation7.gz";
8 $h = gzopen($f, 'w');
25 $h = gzopen($f, 'r');
29 unlink($f);
/php-src/ext/date/tests/
H A DDateInterval_serialize-002.phpt35 'f' => 0.654321,
61 ["f"]=>
73 …y";i:43;s:1:"m";i:3;s:1:"d";i:24;s:1:"h";i:1;s:1:"i";i:12;s:1:"s";i:27;s:1:"f";d:0;s:6:"invert";i:…
90 ["f"]=>
115 ["f"]=>
140 ["f"]=>
/php-src/ext/pgsql/tests/
H A D80_bug32223.phpt15 return ''f'';
38 return ''f'';
49 if ($row[0] == 'f')
64 string(1) "f"
/php-src/ext/soap/tests/
H A Dclassmap007.phpt29 function f($input){
39 $this->server->addFunction("f");
53 print_r($client->f(new Attest('test')));
54 print_r($client->f(new Attest('test')));
/php-src/Zend/tests/generators/
H A Dbug65035.phpt7 f();
11 function f() {
/php-src/Zend/tests/arg_unpack/
H A Dmany_args.phpt6 function f(...$args) {
11 f(...$array, ...$array);
/php-src/ext/ldap/tests/
H A Dldap_escape_all.phpt14 string(39) "\66\6f\6f\3d\62\61\72\28\62\61\7a\29\2a"
/php-src/ext/standard/tests/file/
H A Dphp_fd_wrapper_01.phpt5 $f = fopen("php://fd/1", "wb");
6 fwrite($f, "hi!");
/php-src/ext/mbstring/tests/
H A Dmb_encode_numericentity.phpt18 echo "4: " . mb_encode_numericentity('föo', $convmap, "UTF-8") . "\n";
29 echo "7: " . mb_encode_numericentity('föo', $convmap, "UTF-8") . "\n";
30 echo "7 (hex): " . mb_encode_numericentity('föo', $convmap, "UTF-8", true) . "\n";
44 echo "10: " . mb_encode_numericentity('föo', $convmap, "UTF-8") . "\n";
45 echo "10 (hex): " . mb_encode_numericentity('föo', $convmap, "UTF-8", true) . "\n";
63 4: föo
66 7: föo
67 7 (hex): föo

Completed in 41 milliseconds

1...<<11121314151617181920>>...44