Home
last modified time | relevance | path

Searched refs:f (Results 176 – 200 of 1040) sorted by relevance

12345678910>>...42

/php-src/ext/standard/tests/file/windows_mb_path/
H A Dtest_kartuli_utf8_2.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 Dbug64506.phpt23 $f = fopen($fnw, 'w');
24 if ($f) {
25 var_dump($f, fwrite($f, "writing to an mb filename"));
29 var_dump(fclose($f));
H A Dtest_big5_to_utf8_2.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_cp1250_to_utf8_2.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_cp1251_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));
H A Dtest_cp1251_to_utf8_2.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_cp1254_to_utf8_2.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_cp1256_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));
H A Dtest_cp936_to_utf8_2.phpt27 $f = fopen($fn, 'w');
28 if ($f) {
29 var_dump($f, fwrite($f, "writing to an mb filename"));
30 var_dump(fclose($f));
/php-src/ext/standard/tests/file/
H A Dfscanf_variation10.phpt29 $float_formats = array( "%f",
31 " %f", "%f ", "% f",
32 "\t%f", "\n%f", "%4f",
33 "%30f", "%[0-9]", "%*f"
/php-src/ext/bz2/tests/
H A Dbzerr_functions_on_invalid_stream.phpt7 $f = fopen(__FILE__, 'r');
9 var_dump(bzerrno($f));
14 var_dump(bzerrstr($f));
19 var_dump(bzerror($f));
/php-src/Zend/tests/
H A Dfunction_redecl.phpt5 function f() {}
6 function f() {}
9 Fatal error: Cannot redeclare function f() (previously declared in %s:%d) in %s on line %d
H A Dobject_handlers.phpt5 function f($x) {
121 $z = $x->{f("var_get")};
123 $x->{f("var_set")} = 1;
125 $x->{f("var_call")}();
127 $z = $x[f("var_dim_get")];
129 $x[f("var_dim_set")] = 1;
131 isset($x[f("var_dim_isset")]);
133 unset($x[f("var_dim_unset")]);
137 $z = $x->{f(7)};
139 $x->{f(8)} = 1;
/php-src/ext/phar/
H A Dshortarc.php136 $f = $info['c'];
138 if ($f & self::GZ) {
145 if ($f & self::BZ2) {
282 foreach (glob('*') as $f) {
283 if (file_exists($f)) {
284 is_dir($f) ? @rmdir($f) : @unlink($f);
285 if (file_exists($f) && is_dir($f)) {
286 self::_removeTmpFiles($f, getcwd());
/php-src/ext/standard/tests/strings/
H A Dbug50052.phpt5 $salt = '$1$f+uslYF01$';
11 $1$f+uslYF01$
12 $1$f+uslYF0$orVloNmKSLvOeswusE0bY.
H A Dhtmlspecialchars_decode_variation4.phpt14 …'Roy's height > Sam's height... \t\t 13 < 15...\n\r " double quote\f\v string…
15 '\nRoy's height &gt\t; Sam's\v height\f',
41 string(78) "Roy's height > Sam's height... \t\t 13 < 15...\n\r " double quote\f\v string ""
42 string(88) "Roy&#039;s height > Sam&#039;s height... \t\t 13 < 15...\n\r " double quote\f\v string …
43 string(98) "Roy&#039;s height > Sam&#039;s height... \t\t 13 < 15...\n\r &quot; double quote\f\v st…
44 string(78) "Roy's height > Sam's height... \t\t 13 < 15...\n\r " double quote\f\v string ""
46 string(38) "\nRoy's height &gt\t; Sam's\v height\f"
47 string(48) "\nRoy&#039;s height &gt\t; Sam&#039;s\v height\f"
48 string(48) "\nRoy&#039;s height &gt\t; Sam&#039;s\v height\f"
49 string(38) "\nRoy's height &gt\t; Sam's\v height\f"
H A Dprintf_basic3.phpt11 $format1 = "%f";
12 $format2 = "%f %f";
13 $format3 = "%f %f %f";
/php-src/ext/standard/tests/array/
H A Dcompact_basic.phpt16 $f="string";
19 var_dump (compact(array("a", "b", "c", "d", "e", "f")));
21 var_dump (compact("a", "b", "c", "d", "e", "f"));
43 ["f"]=>
60 ["f"]=>
/php-src/tests/lang/
H A DforeachLoopIteratorAggregate.002.phpt35 function f($className) {
45 f("bad1");
46 f("bad2");
47 f("bad3");
48 f("bad4");
/php-src/ext/mbstring/tests/
H A Dbug31911.phpt9 echo mb_decode_mimeheader("Fails: =?iso-8859-1?q?=3f=3f=3f?=")
/php-src/ext/spl/tests/SplFileObject/
H A Dbug52573.phpt7 $f = new SplFileObject(__FILE__, 'r');
8 var_dump($f->fscanf('<?php // %s', $result));
10 var_dump($f->fscanf('<?php // %s'));
/php-src/ext/date/tests/
H A Dbug81500.phpt6 $interval->f = -0.000001;
7 var_dump($interval->s, $interval->f);
10 var_dump($interval->s, $interval->f);
/php-src/.github/
H A Dnightly_matrix.php149 $f = fopen(getenv('GITHUB_OUTPUT'), 'a'); variable
150 fwrite($f, 'branches=' . json_encode($branches, JSON_UNESCAPED_SLASHES) . "\n");
151 fwrite($f, 'matrix-include=' . json_encode($matrix_include, JSON_UNESCAPED_SLASHES) . "\n");
152 fwrite($f, 'windows-matrix-include=' . json_encode($windows_matrix_include, JSON_UNESCAPED_SLASHES)…
153 fwrite($f, 'macos-matrix-include=' . json_encode($macos_matrix_include, JSON_UNESCAPED_SLASHES) . "…
154 fclose($f);
/php-src/ext/opcache/tests/match/
H A D001.phpt18 'e', 'f' => 'e, f',
57 0001 MATCH CV0($char) "a": 0003, "b": 0004, "c": 0004, "d": 0005, "e": 0006, "f": 0006, "g": 0007, …
62 0006 RETURN string("e, f")
69 string(4) "e, f"
70 string(4) "e, f"
/php-src/ext/pcre/tests/
H A Dpreg_replace_callback_array2.phpt17 function f() {
22 var_dump(preg_replace_callback_array(array('/\w' => 'f'), 'z'));
25 var_dump(preg_replace_callback_array(array('/\w/' => 'f', '/.*/' => 'f'), 'z'));

Completed in 32 milliseconds

12345678910>>...42