Home
last modified time | relevance | path

Searched refs:fp (Results 351 – 375 of 909) sorted by relevance

1...<<11121314151617181920>>...37

/PHP-5.5/ext/standard/tests/file/
H A Dunlink_variation2.phpt24 $fp = fopen($filename, "w");
29 fclose($fp);
H A Dglob_variation2.phpt18 $fp = fopen("$file_path/$dir_name/file.text", "w");
19 fclose($fp);
H A Drename_variation5.phpt20 $fp = fopen($filename, "w");
21 fclose($fp);
46 $fp = fopen($filename, "w");
47 fclose($fp);
H A Dfseek_ftell_rewind_error2.phpt23 $fp = fopen(__FILE__, "r");
24 var_dump( ftell($fp, 10) );
44 fclose($fp);
45 var_dump(ftell($fp));
H A Dfseek_ftell_rewind_error3.phpt23 $fp = fopen(__FILE__, "r");
24 var_dump( rewind($fp, 10) );
44 fclose($fp);
45 var_dump(rewind($fp));
H A D006_error.phpt10 $fp = fopen($filename, 'w');
11 fclose($fp);
50 $fp = fopen(dirname(__FILE__)."/006_error.tmp", "w");
51 fclose($fp);
/PHP-5.5/Zend/tests/
H A Doffset_array.phpt16 $fp = fopen(__FILE__, "r");
17 var_dump($arr[$fp]);
/PHP-5.5/ext/dba/
H A Ddba_cdb.c78 file = info->fp; in DBA_OPEN_FUNC()
90 file = info->fp; in DBA_OPEN_FUNC()
228 int cdb_file_lseek(php_stream *fp, off_t offset, int whence TSRMLS_DC) { in cdb_file_lseek() argument
229 php_stream_seek(fp, offset, whence); in cdb_file_lseek()
230 return php_stream_tell(fp); in cdb_file_lseek()
/PHP-5.5/ext/openssl/
H A DREADME257 $cert = fread($fp, 8192);
258 fclose($fp);
265 $cert = fread($fp, 8192);
266 fclose($fp);
276 $fp = fopen("/src/openssl-0.9.6/demos/sign/key.pem", "r");
278 $pkey = fread($fp, 8192);
279 fclose($fp);
297 $pkey = fread($fp, 8192);
298 fclose($fp);
311 $cert = fread($fp, 8192);
[all …]
/PHP-5.5/ext/session/tests/
H A Dsession_regenerate_id_error.phpt33 $fp = fopen(__FILE__, "r");
80 /*24*/ $fp
91 fclose($fp);
/PHP-5.5/ext/phar/tests/
H A Drefcount1.phpt22 $fp = fopen($pname . '/b/c.php', 'wb');
23 fwrite($fp, b"extra");
24 fclose($fp);
H A Dopen_for_write_newfile_c.phpt23 $fp = fopen($pname . '/b/new.php', 'wb');
24 fwrite($fp, 'extra');
25 fclose($fp);
H A Dopen_for_write_newfile_c_5_2.phpt21 $fp = fopen($pname . '/b/new.php', 'wb');
22 fwrite($fp, 'extra');
23 fclose($fp);
/PHP-5.5/ext/standard/tests/math/
H A Ddechex_variation1.phpt33 $fp = fopen(__FILE__, "r");
81 /*27*/ $fp
91 fclose($fp);
H A Ddechex_variation1_64bit.phpt33 $fp = fopen(__FILE__, "r");
81 /*27*/ $fp
91 fclose($fp);
H A Ddecoct_variation1.phpt34 $fp = fopen(__FILE__, "r");
82 /*27*/ $fp
92 fclose($fp);
H A Ddecoct_variation1_64bit.phpt34 $fp = fopen(__FILE__, "r");
82 /*27*/ $fp
92 fclose($fp);
/PHP-5.5/ext/xml/tests/
H A Dxml003.phpt61 if (!($fp = @fopen("xmltest.xml", "r"))) {
65 while ($data = fread($fp, 4096)) {
66 if (!xml_parse($xml_parser, $data, feof($fp))) {
H A Dxml001.phpt20 if (!($fp = @fopen("xmltest.xml", "r"))) {
24 while ($data = fread($fp, 4096)) {
25 if (!xml_parse($xml_parser, $data, feof($fp))) {
/PHP-5.5/ext/standard/tests/array/
H A Darray_push_variation2.phpt37 $fp = fopen(__FILE__, "r");
85 /*25*/ $fp
97 fclose($fp);
H A Darray_diff_variation8.phpt24 $fp = fopen(__FILE__, "r");
55 /*8*/ array(11 => new classA(), "unset" => @$unset_var, "resource" => $fp, new classA(), $fp),
67 fclose($fp);
/PHP-5.5/ext/ctype/tests/
H A Dctype_digit_variation1.phpt38 $fp = fopen(__FILE__, "r");
86 /*25*/ $fp
97 fclose($fp);
H A Dctype_upper_variation1.phpt38 $fp = fopen(__FILE__, "r");
86 /*25*/ $fp
97 fclose($fp);
/PHP-5.5/ext/gmp/tests/
H A D009.phpt31 $fp = fopen(__FILE__, 'r');
33 var_dump(gmp_div_q($fp, $fp));
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_exec_load_data.phpt68 $fp = fopen($filename, "w");
69 fwrite($fp, b"1;foo\n");
70 fwrite($fp, b"2;bar");
71 fclose($fp);

Completed in 24 milliseconds

1...<<11121314151617181920>>...37