Home
last modified time | relevance | path

Searched refs:fp (Results 226 – 250 of 926) sorted by relevance

12345678910>>...38

/PHP-7.1/ext/json/tests/
H A Dbug73254.phpt12 $fp = fopen('php://temp', 'r');
13 $data = ['a' => $fp];
/PHP-7.1/ext/libxml/tests/
H A Dbug63389.phpt7 $fp = fopen("php://input", "r");
8 libxml_set_streams_context($fp);
/PHP-7.1/ext/dba/libcdb/
H A Dcdb.h31 php_stream *fp; member
44 void cdb_init(struct cdb *, php_stream *fp);
/PHP-7.1/ext/phar/tests/tar/
H A Dopen_for_write_newfile.phpt29 $fp = fopen($alias . '/b/new.php', 'wb');
30 fwrite($fp, b'extra');
31 fclose($fp);
/PHP-7.1/ext/phar/tests/zip/
H A Dopen_for_write_newfile.phpt28 $fp = fopen($alias . '/b/new.php', 'wb');
29 fwrite($fp, b'extra');
30 fclose($fp);
/PHP-7.1/ext/posix/tests/
H A Dposix_access_error_modes.phpt24 $fp = fopen($filename,"w");
25 fwrite($fp,"foo");
26 fclose($fp);
H A Dposix_access.phpt23 $fp = fopen($filename,"w");
24 fwrite($fp,"foo");
25 fclose($fp);
/PHP-7.1/Zend/tests/
H A D017.phpt8 $fp = fopen(__FILE__, "r");
9 var_dump(get_resource_type($fp));
10 fclose($fp);
11 var_dump(get_resource_type($fp));
/PHP-7.1/ext/standard/tests/strings/
H A Dvfprintf_error4.phpt17 $fp = fopen( $file, "a+" );
21 var_dump( vfprintf( $fp, 'Foo %$c-0202Sd', array( 2 ) ) );
24 fclose( $fp );
H A Dvfprintf_variation20.phpt88 if (!($fp = fopen($data_file, 'wt')))
91 fprintf($fp, "\n*** Testing vprintf() with with unexpected values for format argument ***\n");
95 fprintf( $fp, "\n-- Iteration %d --\n",$counter);
96 vfprintf($fp, $value, $args);
100 fclose($fp);
H A Dvfprintf_variation21.phpt85 if (!($fp = fopen($data_file, 'wt')))
88 fprintf($fp, "\n*** Testing vprintf() with unexpected values for args argument ***\n");
92 fprintf($fp, "\n-- Iteration %d --\n",$counter);
93 vfprintf($fp, $format, $value);
97 fclose($fp);
H A Dvfprintf_variation11.phpt49 if (!($fp = fopen($data_file, 'wt')))
56 fprintf($fp, "\n-- Iteration %d --\n",$counter);
57 vfprintf($fp, $format, $args_array[$counter-1]);
61 fclose($fp);
H A Dvfprintf_variation11_64bit.phpt49 if (!($fp = fopen($data_file, 'wt')))
56 fprintf($fp, "\n-- Iteration %d --\n",$counter);
57 vfprintf($fp, $format, $args_array[$counter-1]);
61 fclose($fp);
H A Dvfprintf_variation15.phpt42 if (!($fp = fopen($data_file, 'wt')))
49 fprintf($fp, "\n-- Iteration %d --\n",$counter);
50 vfprintf($fp, $format, $args_array[$counter-1]);
54 fclose($fp);
H A Dvfprintf_variation15_64bit.phpt42 if (!($fp = fopen($data_file, 'wt')))
49 fprintf($fp, "\n-- Iteration %d --\n",$counter);
50 vfprintf($fp, $format, $args_array[$counter-1]);
54 fclose($fp);
H A Dvfprintf_variation19.phpt50 if (!($fp = fopen($data_file, 'wt')))
57 fprintf($fp, "\n-- Iteration %d --\n",$counter);
58 vfprintf($fp,$format, $args_array[$counter-1]);
62 fclose($fp);
H A Dvfprintf_variation19_64bit.phpt50 if (!($fp = fopen($data_file, 'wt')))
57 fprintf($fp, "\n-- Iteration %d --\n",$counter);
58 vfprintf($fp,$format, $args_array[$counter-1]);
62 fclose($fp);
H A Dvfprintf_variation3.phpt49 if (!($fp = fopen($data_file, 'wt')))
54 fprintf($fp, "\n-- Iteration %d --\n",$counter);
55 vfprintf($fp, $format, $args_array[$counter-1]);
59 fclose($fp);
H A Dvfprintf_variation5.phpt46 if (!($fp = fopen($data_file, 'wt')))
53 fprintf($fp, "\n-- Iteration %d --\n",$counter);
54 vfprintf($fp, $format, $args_array[$counter-1]);
58 fclose($fp);
H A Dvfprintf_variation9.phpt45 if (!($fp = fopen($data_file, 'wt')))
52 fprintf($fp, "\n-- Iteration %d --\n",$counter);
53 vfprintf($fp, $format, $args_array[$counter-1]);
57 fclose($fp);
/PHP-7.1/ext/standard/tests/filters/
H A Dbug22538.phpt18 $fp = fopen($path1, "w") or die("Can not open $path1\n");
23 fwrite($fp, $str);
26 fclose($fp);
/PHP-7.1/ext/phar/tests/
H A D021.phpt25 $fp = fopen('phar://hio/a', 'r');
26 var_dump(fstat($fp));
27 fclose($fp);
/PHP-7.1/ext/standard/tests/file/
H A Dfseek_variation2.phpt9 /* Prototype : proto int fseek(resource fp, int offset [, int whence])
17 $fp = fopen(__FILE__, 'r');
67 var_dump( fseek($fp, $offset, $value) );
68 var_dump( ftell($fp));
71 fclose($fp);
/PHP-7.1/ext/mysqli/tests/
H A D061.phpt24 function my_read($fp, &$buffer, $buflen, &$error) {
25 $buffer = strrev(fread($fp, $buflen));
34 $fp = fopen($filename, "w");
35 fwrite($fp, b"foo;bar");
36 fclose($fp);
/PHP-7.1/sapi/cli/tests/
H A Dphp_cli_server.inc49 $fp = @fsockopen(PHP_CLI_SERVER_HOSTNAME, PHP_CLI_SERVER_PORT);
56 if ($fp) {
62 if ($fp) {
63 fclose($fp);

Completed in 30 milliseconds

12345678910>>...38