Home
last modified time | relevance | path

Searched refs:f (Results 126 – 150 of 1042) sorted by relevance

12345678910>>...42

/php-src/ext/standard/tests/file/windows_mb_path/
H A Dtest_big5_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_cp1250_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_cp1251_0.phpt30 $f = fopen($fn, 'r');
31 if ($f) {
32 var_dump($f, fread($f, 42));
33 var_dump(fclose($f));
H A Dtest_cp1251_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_cp1252_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_cp1252_to_utf8_3.phpt27 $f = fopen($fn, 'r');
28 if ($f) {
29 var_dump($f, fread($f, 42));
30 var_dump(fclose($f));
H A Dtest_cp1253_0.phpt30 $f = fopen($fn, 'r');
31 if ($f) {
32 var_dump($f, fread($f, 42));
33 var_dump(fclose($f));
H A Dtest_cp1254_0.phpt30 $f = fopen($fn, 'r');
31 if ($f) {
32 var_dump($f, fread($f, 42));
33 var_dump(fclose($f));
H A Dtest_cp1254_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_0.phpt30 $f = fopen($fn, 'r');
31 if ($f) {
32 var_dump($f, fread($f, 42));
33 var_dump(fclose($f));
H A Dtest_cp1256_0.phpt30 $f = fopen($fn, 'r');
31 if ($f) {
32 var_dump($f, fread($f, 42));
33 var_dump(fclose($f));
H A Dtest_cp936_0.phpt30 $f = fopen($fn, 'r');
31 if ($f) {
32 var_dump($f, fread($f, 42));
33 var_dump(fclose($f));
H A Dtest_cp936_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_eucjp_to_utf8_0.phpt27 $f = fopen($fn, 'r');
28 if ($f) {
29 var_dump($f, fread($f, 42));
30 var_dump(fclose($f));
/php-src/ext/reflection/tests/
H A DReflectionClass_getMethods_001.phpt9 public function f() {}
16 protected function f() {}
23 private function f() {}
44 string(1) "f"
61 string(1) "f"
78 string(1) "f"
95 string(1) "f"
112 string(1) "f"
H A DReflectionClass_toString_002.phpt9 function f() {}
12 function f() {}
18 function f() {}
45 Method [ <user> public method f ] {
69 Method [ <user, overwrites A, prototype A> public method f ] {
93 Method [ <user, inherits B, prototype A> public method f ] {
117 Method [ <user, overwrites B, prototype A> public method f ] {
H A DReflectionObject___toString_basic2.phpt10 $f = new foo;
11 $f->dynProp = 'hello';
12 $f->dynProp2 = 'hello again';
13 echo new ReflectionObject($f);
/php-src/ext/standard/tests/strings/
H A Dsprintf_variation54.phpt6 $formats = ['s', 'd', 'u', 'f', 'c', 'x'];
121 f with null:
124 f with false:
127 f with true:
130 f with 2:
133 f with 3.5:
136 f with "foo":
139 f with []:
142 f with [1]:
145 f with resource:
[all …]
/php-src/ext/standard/tests/streams/
H A Dstream_set_chunk_size.phpt29 $f = fopen("test://foo","r");
35 var_dump(stream_set_chunk_size($f, 1));
37 var_dump(strlen(fread($f, 10000)));
39 var_dump(fwrite($f, str_repeat('b', 3)));
42 var_dump(stream_set_chunk_size($f, 100));
44 var_dump(strlen(fread($f, 250)));
46 var_dump(strlen(fread($f, 50)));
48 var_dump(strlen(fread($f, 50)));
50 var_dump(strlen(fwrite($f, str_repeat('b', 250))));
54 stream_set_chunk_size($f, 0);
[all …]
/php-src/tests/classes/
H A Dtype_hinting_005c.phpt5 Class C { function f(SomeClass $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(SomeClass $a) in %s on line…
/php-src/Zend/tests/
H A Dbug70223.phpt6 // Note that this actually writes to dynamic property A::$f.
18 echo $a->f++;
19 echo $a->f++;
20 echo $a->f++;
H A Dbug76869.phpt6 private function f() {
11 protected function f() {
17 var_dump($b->f());
23 Exception: Call to protected method B::f() from global scope
H A Dbug65108.phpt6 private function f() {}
12 $isCallable = is_callable(array(new C, 'f'));
20 private function f() {}
23 $isCallable = is_callable(array('E', 'f'));
/php-src/ext/opcache/tests/jit/
H A Dgh10271.phpt34 printf("In;%.12f;%.12f;%.12f;%.12f;",$x,$y,$sol['xc'],$sol['yc']);
37 printf("Out;%.12f;%.12f\n",$x,$y);
/php-src/Zend/tests/fibers/
H A Dgh10496-001.phpt16 $f = new Fiber(function() use (&$f) {
24 $f->start();
25 unset($f);

Completed in 41 milliseconds

12345678910>>...42