Home
last modified time | relevance | path

Searched refs:f (Results 51 – 75 of 903) sorted by relevance

12345678910>>...37

/PHP-5.5/ext/standard/tests/strings/
H A Dbug54238.phpt7 $f = array(array('A', 'A'));
9 $z = substr_replace($f, $f, $f, 1);
10 var_dump($z, $f);
H A Dsprintf_variation38.phpt69 string(10) "0-9A-Fa-f]"
84 string(10) "0-9A-Fa-f]"
99 string(10) "0-9A-Fa-f]"
114 string(10) "0-9A-Fa-f]"
129 string(10) "0-9A-Fa-f]"
144 string(10) "0-9A-Fa-f]"
159 string(10) "0-9A-Fa-f]"
174 string(10) "0-9A-Fa-f]"
189 string(10) "0-9A-Fa-f]"
204 string(10) "0-9A-Fa-f]"
[all …]
H A Dstrtolower.phpt90 0f => 0f
106 1f => 1f
122 2f => 2f
138 3f => 3f
154 4f => 6f
170 5f => 5f
186 6f => 6f
202 7f => 7f
H A Dstrtoupper1.phpt90 0f => 0f
106 1f => 1f
122 2f => 2f
138 3f => 3f
154 4f => 4f
170 5f => 5f
186 6f => 4f
202 7f => 7f
H A Dstrtoupper1-win32.phpt78 0f => 0f
94 1f => 1f
110 2f => 2f
126 3f => 3f
142 4f => 4f
158 5f => 5f
174 6f => 4f
190 7f => 7f
206 8f => 8f
222 9f => 9f
[all …]
H A Dsprintf_f_3.phpt2 sprintf %f #3
8 var_dump(sprintf("%.3f", 100.426));
9 var_dump(sprintf("%.2f", 100.426));
10 var_dump(sprintf("%f'", 100.426));
15 var_dump(sprintf("%01.2f", $money));
H A Dbug65230.phpt22 printf(" %%f: %f\n", $value);
36 %f: 3,410000
43 %f: 3.410000
50 %f: 3,410000
57 %f: 3,410000
H A Dsprintf_variation34.phpt75 string(10) "0-9A-Fa-f]"
90 string(10) "0-9A-Fa-f]"
105 string(10) "0-9A-Fa-f]"
120 string(10) "0-9A-Fa-f]"
135 string(10) "0-9A-Fa-f]"
150 string(10) "0-9A-Fa-f]"
165 string(10) "0-9A-Fa-f]"
180 string(10) "0-9A-Fa-f]"
195 string(10) "0-9A-Fa-f]"
210 string(10) "0-9A-Fa-f]"
[all …]
H A Dstrtolower-win32.phpt78 0f => 0f
94 1f => 1f
110 2f => 2f
126 3f => 3f
142 4f => 6f
158 5f => 5f
174 6f => 6f
190 7f => 7f
206 8f => 8f
222 9f => ff
H A Dsprintf_variation37.phpt63 string(10) "0-9A-Fa-f]"
78 string(10) "0-9A-Fa-f]"
93 string(10) "0-9A-Fa-f]"
108 string(10) "0-9A-Fa-f]"
123 string(10) "0-9A-Fa-f]"
138 string(10) "0-9A-Fa-f]"
153 string(10) "0-9A-Fa-f]"
168 string(10) "0-9A-Fa-f]"
183 string(10) "0-9A-Fa-f]"
198 string(10) "0-9A-Fa-f]"
[all …]
H A Dvsprintf_basic3.phpt15 $format1 = "%f";
16 $format2 = "%f %f";
17 $format3 = "%f %f %f";
/PHP-5.5/sapi/cgi/tests/
H A D009.phpt13 $f = tempnam(sys_get_temp_dir(), 'cgitest');
15 putenv("TRANSLATED_PATH=".$f."/x");
16 putenv("SCRIPT_FILENAME=".$f."/x");
17 file_put_contents($f, '<?php var_dump($_SERVER["TRANSLATED_PATH"]); ?>');
19 echo (`$php -n $f`);
23 @unlink($f);
/PHP-5.5/tests/lang/
H A Dengine_assignExecutionOrder_001.phpt6 function f() {
7 echo "in f()\n";
18 ${f()} = g();
22 $a[f()] = g();
78 in f()
84 in f()
93 in f()
102 in f()
117 in f()
129 in f()
[all …]
H A Dstatic_variation_002.phpt7 function f() {
20 $c->f();
24 static function f() {
28 D::f();
31 eval(' Class E { function f() { static $c = array(1,2,3); var_dump($c); } }');
33 $e->f();
H A Dengine_assignExecutionOrder_002.phpt7 $f = array("hello","item2","bye");
8 list($a,,$b) = $f;
22 // the f++++ makes f into 2, so $e 0 and 1 should both be 30
24 $f = 0;
29 list($e[$f++],$e[$f++]) = $g[$f];
82 function f() {
84 $ee = array("array created in f()");
87 $ee["array entry created after f()"][f()] = "hello";
129 [0] => array created in f()
130 [array entry created after f()] => Array
H A Dbug23524.phpt7 function f($a=array(THE_CONST=>THE_CONST)) {
10 f();
11 f();
12 f();
/PHP-5.5/Zend/tests/
H A Daccess_modifiers_008.phpt9 static protected function f() {return 'A::f()';}
12 static protected function f() {return 'B1::f()';}
15 static public function test() {echo B1::f();}
21 Fatal error: Call to protected method B1::f() from context 'B2' in %s on line %d
H A Dbug55305.phpt9 $f = new Foo();
10 $f->bar =& $f->foo;
11 var_dump($f->foo);
12 var_dump($f->bar);
H A Dxor_003.phpt7 $f = false;
9 var_dump($t ^ $f);
11 var_dump($f ^ $f);
/PHP-5.5/ext/zlib/tests/
H A Dbug67724.phpt11 $f = fopen(__DIR__."/bug67724.gz.gz", "rb")
13 stream_filter_append($f, "zlib.inflate", STREAM_FILTER_READ, ["window" => 30]);
14 stream_filter_append($f, "zlib.inflate", STREAM_FILTER_READ, ["window" => 30]);
15 for ($i = 0; !feof($f); $i += strlen(fread($f, 0x1000)))
17 fclose($f);
/PHP-5.5/ext/zip/lib/
H A Dzip_source_buffer.c54 struct read_data *f; in zip_source_buffer() local
65 if ((f=(struct read_data *)malloc(sizeof(*f))) == NULL) { in zip_source_buffer()
70 f->data = (const char *)data; in zip_source_buffer()
71 f->end = ((const char *)data)+len; in zip_source_buffer()
72 f->freep = freep; in zip_source_buffer()
73 f->mtime = time(NULL); in zip_source_buffer()
75 if ((zs=zip_source_function(za, read_data, f)) == NULL) { in zip_source_buffer()
76 free(f); in zip_source_buffer()
/PHP-5.5/tests/classes/
H A Dctor_visibility.phpt22 static function f()
28 Derived::f();
37 static function f()
43 TestPriv::f();
53 static function f()
59 DerivedPriv::f();
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_hasMethod_001.phpt9 public function f() {}
16 protected function f() {}
23 private function f() {}
34 echo " --> Check for f(): ";
35 var_dump($rc->hasMethod("f"));
46 --> Check for f(): bool(true)
51 --> Check for f(): bool(true)
56 --> Check for f(): bool(true)
61 --> Check for f(): bool(true)
66 --> Check for f(): bool(true)
[all …]
/PHP-5.5/tests/output/
H A Dob_start_basic_006.phpt10 function f($string) {
14 return "f[call:$i; len:$len] - $string\n";
47 var_dump(ob_start(array("f")));
50 var_dump(ob_start(array("f", "f")));
53 var_dump(ob_start(array("f", "C::g", "f", "C::g")));
56 var_dump(ob_start(array("f", "non_existent", "f")));
59 var_dump(ob_start(array("f", "non_existent", "f", "f")));
71 var_dump(ob_start(array('f', 'C::g', array(array($c, "g"), array($c, "h")))));
85 Warning: ob_start(): class 'f' not found in %s on line 47
/PHP-5.5/ext/standard/tests/math/
H A Dfloorceil.phpt10 $d = ceil (1.5); $e = ceil (1.8); $f = ceil (2.7);
11 var_dump ($a, $b, $c, $d, $e, $f);
14 $d = floor (-1.5); $e = floor (-1.8); $f = floor (-2.7);
15 var_dump ($a, $b, $c, $d, $e, $f);
18 $d = floor (1.5); $e = floor (1.8); $f = floor (2.7);
19 var_dump ($a, $b, $c, $d, $e, $f);

Completed in 43 milliseconds

12345678910>>...37