Home
last modified time | relevance | path

Searched refs:f (Results 26 – 50 of 903) sorted by relevance

12345678910>>...37

/PHP-5.5/Zend/tests/
H A Dbug54039.phpt9 $f = function() use($v) {
12 return $f;
15 $f = test_1(); $f();
16 $f = test_1(); $f();
20 $f = function() use($v) {
25 return $f;
28 $f = test_2(); $f();
29 $f = test_2(); $f();
40 return $f;
42 $f = test_3(); $f();
[all …]
H A Daccess_modifiers_009.phpt9 static protected function f() {return 'A::f()';}
12 static protected function f() {return 'B1::f()';}
16 var_dump(is_callable('B1::f'));
17 B1::f();
26 Fatal error: Call to protected method B1::f() from context 'B2' in %s on line %d
/PHP-5.5/ext/standard/tests/strings/
H A Dvfprintf_variation6.phpt19 '%f %+f %-f
20 %lf %Lf %4f %-4f
21 %10.4f %-10.4f %04f %04.4f
22 %\'#2f %\'2f %\'$2f %\'_2f
23 %3$f %4$f %1$f %2$f';
86 123456.000000 f -12346789.000000 12346789.000000
92 123.000000 f -123.000000 123.000000
98 1.000000 f 1.000000 1.000000
104 1.000000 f 0.000000 1.000000
H A Dsprintf_variation11.phpt24 "%f", "%hf", "%lf",
25 "%Lf", " %f", "%f ",
26 "\t%f", "\n%f", "%4f",
27 "%30f", "%[0-9]", "%*f"
52 string(1) "f"
54 string(1) "f"
63 string(1) "f"
67 string(1) "f"
69 string(1) "f"
78 string(1) "f"
H A Dhtmlentities21.phpt83 0007F: 262378464646443b 7f
85 0009F: 9f 9f
99 0007F: 7f 7f
101 0009F: 9f 9f
117 0009F: 26647a63793b 9f
131 0007F: 7f 7f
133 0009F: 9f 9f
147 0007F: 7f 7f
163 0007F: 7f 7f
179 0007F: 7f 7f
[all …]
H A Dfprintf_variation_001.phpt13 $float_variation = array( "%f","%-f", "%+f", "%7.2f", "%-7.2f", "%07.2f", "%-07.2f", "%'#7.2f" );
/PHP-5.5/tests/lang/
H A Dbug24652.phpt6 $f = array('7' => 0);
7 var_dump($f);
8 var_dump(array_key_exists(7, $f));
9 var_dump(array_key_exists('7', $f));
13 $f = array_flip(array('7'));
14 var_dump($f);
15 var_dump(array_key_exists(7, $f));
16 var_dump(array_key_exists('7', $f));
/PHP-5.5/ext/standard/tests/array/
H A Darray_unshift_variation2.phpt131 ["f"]=>
148 ["f"]=>
162 ["f"]=>
179 ["f"]=>
193 ["f"]=>
210 ["f"]=>
224 ["f"]=>
241 ["f"]=>
255 ["f"]=>
272 ["f"]=>
[all …]
H A Dcompact_variation2.phpt15 function f() {
16 $b = 'f.b';
17 $c = 'f.c';
22 f();
30 string(3) "f.b"
32 string(3) "f.c"
36 string(3) "f.b"
38 string(3) "f.c"
/PHP-5.5/scripts/dev/generate-phpt/tests/
H A DgtBasicTestCaseMethodTest.php10 $f = new gtMethod('DOMDocument','createAttribute');
11 $f->setArgumentNames();
12 $f->setArgumentLists();
13 $f->setInitialisationStatements();
14 $f->setConstructorArgumentNames();
15 $f->setConstructorInitStatements();
19 $btc->setMethod($f);
H A DgtErrorTestCaseMethodTest.php10 $f = new gtMethod('DOMDocument', 'createAttribute');
11 $f->setArgumentNames();
12 $f->setArgumentLists();
14 $f->setInitialisationStatements();
16 $f->setConstructorArgumentNames();
17 $f->setConstructorInitStatements();
22 $btc->setMethod($f);
H A DgtVariationTestCaseMethodTest.php9 $f = new gtMethod('DOMDocument','createAttribute');
10 $f->setArgumentNames();
11 $f->setArgumentLists();
13 $f->setConstructorArgumentNames();
14 $f->setConstructorInitStatements();
19 $vtc->setUp($f, 1, 'int');
H A DgtBasicTestCaseFunctionTest.php10 $f = new gtFunction('cos');
11 $f->setArgumentNames();
12 $f->setArgumentLists();
13 $f->setInitialisationStatements();
17 $btc->setFunction($f);
H A DgtErrorTestCaseFunctionTest.php10 $f = new gtFunction('cos');
11 $f->setArgumentNames();
12 $f->setArgumentLists();
13 $f->setInitialisationStatements();
18 $btc->setFunction($f);
/PHP-5.5/tests/classes/
H A Dnew_001.phpt18 $f = new Inc();
19 $k =& $f;
20 echo "\$f initially points to the first object:\n";
21 var_dump($f);
23 echo "Assigning new object directly to \$k affects \$f:\n";
25 var_dump($f);
27 …echo "Assigning new object by ref to \$k removes it from \$f's reference set, so \$f is unchanged:…
29 var_dump($f);
34 $f initially points to the first object:
39 Assigning new object directly to $k affects $f:
[all …]
/PHP-5.5/ext/pdo/
H A DMakefile.frag14 @for f in $(PDO_HEADER_FILES); do \
15 if test -f "$(top_srcdir)/$$f"; then \
16 $(INSTALL_DATA) $(top_srcdir)/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/pdo; \
17 elif test -f "$(top_builddir)/$$f"; then \
18 $(INSTALL_DATA) $(top_builddir)/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/pdo; \
19 elif test -f "$(top_srcdir)/ext/pdo/$$f"; then \
20 $(INSTALL_DATA) $(top_srcdir)/ext/pdo/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/pdo; \
21 elif test -f "$(top_builddir)/ext/pdo/$$f"; then \
22 $(INSTALL_DATA) $(top_builddir)/ext/pdo/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/pdo; \
/PHP-5.5/sapi/cgi/tests/
H A D010.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
22 echo (`$php -n $f`);
24 file_put_contents($f, '<?php
28 echo (`$php -n $f`);
30 file_put_contents($f, '<?php
34 echo (`$php -n $f`);
38 @unlink($f);
/PHP-5.5/ext/mbstring/tests/
H A Dmb_split_variation1.phpt19 $string = 'a b c d e f g';
107 string(13) "a b c d e f g"
113 string(13) "a b c d e f g"
119 string(13) "a b c d e f g"
125 string(13) "a b c d e f g"
131 string(13) "a b c d e f g"
137 string(13) "a b c d e f g"
143 string(13) "a b c d e f g"
149 string(13) "a b c d e f g"
155 string(13) "a b c d e f g"
[all …]
/PHP-5.5/ext/gd/libgd/
H A Dgd_io_file.c34 FILE *f; member
37 gdIOCtx *newFileCtx (FILE * f);
49 gdIOCtx * gdNewFileCtx (FILE * f) in gdNewFileCtx() argument
55 ctx->f = f; in gdNewFileCtx()
82 return fwrite(buf, 1, size, fctx->f); in filePutbuf()
91 return fread(buf, 1, size, fctx->f); in fileGetbuf()
102 putc (b, fctx->f); in filePutchar()
110 return getc (fctx->f); in fileGetchar()
119 return (fseek (fctx->f, pos, SEEK_SET) == 0); in fileSeek()
127 return ftell (fctx->f); in fileTell()
/PHP-5.5/ext/standard/tests/general_functions/
H A Dbug43293_3.phpt4 -f --f
9 $args = array(true, false, "f");
10 var_dump(getopt("f", $args), $args);
14 ["f"]=>
28 string(1) "f"
/PHP-5.5/ext/standard/tests/math/
H A Dhexdec_basiclong_64bit.phpt16 '7'.str_repeat('f',15),
17 str_repeat('f',16),
18 '7'.str_repeat('f',7),
19 str_repeat('f',8),
20 '7'.str_repeat('f',16),
21 str_repeat('f',18),
22 '7'.str_repeat('f',8),
23 str_repeat('f',9)
/PHP-5.5/ext/simplexml/tests/
H A Dbug67116.phpt21 <fs><f id="f"></f><f id="f"></f></fs>
69 [f] => Array
75 [id] => f
84 [id] => f
/PHP-5.5/ext/standard/tests/streams/
H A Dbug60455_03.phpt30 $f = fopen("test://nonempty2nd", "r");
31 while (!feof($f)) {
32 $line = stream_get_line($f, 99, "\n");
35 $f = fopen("test://", "r");
36 while (!feof($f)) {
37 $line = stream_get_line($f, 99, "\n");
40 $f = fopen("test://eofafter2nd", "r");
41 while (!feof($f)) {
42 $line = stream_get_line($f, 99, "\n");
/PHP-5.5/
H A Dgenfiles25 for f in $CLEANUP_FILES; do
26 cp $f $f.orig
27 grep -v '#line ' $f.orig > $f
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_getMethod_001.phpt9 public function f() {}
16 protected function f() {}
23 private function f() {}
52 %unicode|string%(1) "f"
64 %unicode|string%(1) "f"
72 %unicode|string%(1) "f"
84 %unicode|string%(1) "f"
92 %unicode|string%(1) "f"
104 %unicode|string%(1) "f"
112 %unicode|string%(1) "f"
[all …]

Completed in 28 milliseconds

12345678910>>...37