Home
last modified time | relevance | path

Searched refs:f (Results 201 – 225 of 903) sorted by relevance

12345678910>>...37

/PHP-5.5/ext/zlib/tests/
H A Dgzseek_variation7.phpt11 $f = "temp3.txt.gz";
12 $h = gzopen($f, 'w');
29 $h = gzopen($f, 'r');
33 unlink($f);
H A Dgztell_basic2.phpt11 $f = "temp2.txt.gz";
12 $h = gzopen($f, 'w');
23 unlink($f);
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput5324 /X/8f<any>
654 /f.*/
657 /f.*/s
660 /f.*/8
663 /f.*/8s
681 \x{1680}\x{180e}\x{167f}\x{1681}\x{180d}\x{180f}
683 \x{202f}\x{205f}\x{202e}\x{2030}\x{205e}\x{2060}
687 \x{1680}\x{180e}\x{167f}\x{1681}\x{180d}\x{180f}
689 \x{202f}\x{205f}\x{202e}\x{2030}\x{205e}\x{2060}
798 \x{17f}\x{17f}\x{17f}\x{17f}\x{17f}
[all …]
H A Dtestinput1619 …22}\x{423}\x{424}\x{425}\x{426}\x{427}\x{428}\x{429}\x{42a}\x{42b}\x{42c}\x{42d}\x{42e}\x{42f}/8iSI
20 …}\x{422}\x{423}\x{424}\x{425}\x{426}\x{427}\x{428}\x{429}\x{42a}\x{42b}\x{42c}\x{42d}\x{42e}\x{42f}
21 …}\x{442}\x{443}\x{444}\x{445}\x{446}\x{447}\x{448}\x{449}\x{44a}\x{44b}\x{44c}\x{44d}\x{44e}\x{44f}
39 SSss\x{17f}
/PHP-5.5/ext/standard/tests/strings/
H A D004.phpt5 function stats($f, $a) {
7 print "$f\n";
10 print "$k: $v: " . sprintf('%0.3f', $v / $times) . "\n";
/PHP-5.5/ext/reflection/tests/
H A Dparameters_001.phpt12 $f = new ReflectionMethod('Test', 'func');
13 var_dump($f->getNumberOfParameters());
14 var_dump($f->getNumberOfRequiredParameters());
H A D019.phpt7 $f = new ReflectionFunction("sleep");
8 var_dump($f->getExtensionName());
H A Dparameters_002.phpt17 function check_params_decl_func($r, $f)
19 $c = $r->$f();
20 …echo $f . ': ' . ($c ? ($c instanceof ReflectionMethod ? $c->class . '::' : '') . $c->name : 'NULL…
23 function check_params_decl_class($r, $f)
25 $c = $r->$f();
26 echo $f . ': ' . ($c ? $c->name : 'NULL') . "\n";
29 function check_params_func($r, $f)
31 echo $f . ': ';
32 $v = $r->$f();
/PHP-5.5/ext/phar/tests/
H A Dphar_oo_011b.phpt20 $phar['f.php'] = 'hi';
21 var_dump(isset($phar['f.php']));
22 echo $phar['f.php'];
/PHP-5.5/Zend/tests/
H A Dbug69212.phpt25 $f = function () {};
26 $f->__invoke(do_throw());
33 $f->__invoke($t->bar(Test::foo(do_throw())));
H A Dindirect_reference_this.phpt6 function f($x){var_dump($$x);}
9 $x->f("this");
/PHP-5.5/sapi/cgi/tests/
H A D004.phpt2 execute a file with -f
29 var_dump(`$php -n -f "$filename" 2>/dev/null`);
30 var_dump(`$php -n -f "wrong"`);
/PHP-5.5/ext/standard/tests/file/
H A Dphp_fd_wrapper_01.phpt5 $f = fopen("php://fd/1", "wb");
6 fwrite($f, "hi!");
H A Dphp_fd_wrapper_02.phpt5 $f = fopen("php://fd/1", "rkkk");
6 fwrite($f, "hi!");
H A Dbug20424.phpt5 $f = fopen(__FILE__, "r");
6 $dummy = var_export(stream_get_meta_data($f), TRUE);
/PHP-5.5/ext/zip/tests/
H A Dbug64342_0.phpt13 $f = md5(uniqid()) . '.txt';
14 echo "$f\n";
15 $res = $zip->addFile($f);
/PHP-5.5/ext/pdo_mysql/tests/
H A Dbug66141.phpt14 $input = 'Something\', 1 as one, 2 as two FROM dual; -- f';
35 string(50) "'Something\', 1 as one, 2 as two FROM dual; -- f'"
36 string(50) "'Something'', 1 as one, 2 as two FROM dual; -- f'"
37 string(50) "'Something'', 1 as one, 2 as two FROM dual; -- f'"
/PHP-5.5/ext/libxml/tests/
H A Dlibxml_set_external_entity_loader_variation1.phpt31 $f = fopen("php://temp", "r+");
32 fwrite($f, $first ? $dtd : $entity);
34 rewind($f);
35 return $f;
/PHP-5.5/ext/standard/tests/general_functions/
H A Disset_basic2.phpt14 $f = 10.5;
20 var_dump(isset($i, $f, $s, $b));
21 var_dump(isset($i, $f, $s, $b, $n));
27 var_dump(isset($i, $f, $s, $b));
/PHP-5.5/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_complex_doclit_003w.phpt11 function SOAPStruct($s, $i, $f) {
14 $this->varFloat = $f;
18 function BaseStruct($f, $s) {
19 $this->structMessage = $f;
24 function ExtendedStruct($f, $s, $x1, $x2, $x3) {
25 $this->BaseStruct($f,$s);
/PHP-5.5/tests/strings/
H A D002.phpt14 printf("printf test 3:%f\n", 10.0/3);
15 printf("printf test 4:%.10f\n", 10.0/3);
16 printf("printf test 5:%-10.2f\n", 2.5);
17 printf("printf test 6:%-010.2f\n", 2.5);
18 printf("printf test 7:%010.2f\n", 2.5);
25 printf("printf test 12:%5.2f\n", -12.34);
/PHP-5.5/sapi/apache2filter/
H A Dphp_functions.c55 return ap_sub_req_lookup_uri(filename, ctx->f->r, ctx->f->next); in php_apache_lookup_uri()
162 arr = apr_table_elts(ctx->f->r->headers_in); in PHP_FUNCTION()
182 arr = apr_table_elts(ctx->f->r->headers_out); in PHP_FUNCTION()
238 while(ctx->f->r->prev) { in PHP_FUNCTION()
239 ctx->f->r = ctx->f->r->prev; in PHP_FUNCTION()
267 while(ctx->f->r->prev) { in PHP_FUNCTION()
268 ctx->f->r = ctx->f->r->prev; in PHP_FUNCTION()
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregcomp.c5070 fputs("-", f); in print_distance_range()
5083 fprintf(f, "["); in print_anchor()
5124 fprintf(f, "]"); in print_anchor()
5134 fprintf(f, " anchor: "); print_anchor(f, reg->anchor); in print_optimize_info()
5801 fputs(":", f); in p_string()
5999 fputs(" ", f); in onig_print_compiled_byte_code()
6054 fputs("]", f); in onig_print_compiled_byte_code()
6072 fprintf(f, "\n"); in print_compiled_byte_code_list()
6074 fputs(" ", f); in print_compiled_byte_code_list()
6119 fputc(*p, f); in print_indent_tree()
[all …]
/PHP-5.5/ext/mcrypt/tests/
H A Dmcrypt_filters.phpt7 foreach (stream_get_filters() as $f) {
8 if ($f == "mcrypt.*" || $f == "mdecrypt.*") {
/PHP-5.5/tests/classes/
H A Dvisibility_005.phpt12 function f()
27 $o->f();
36 $o->f();

Completed in 37 milliseconds

12345678910>>...37