Home
last modified time | relevance | path

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

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

/PHP-5.4/ext/standard/tests/file/
H A Dunlink_variation2.phpt24 $fp = fopen($filename, "w");
29 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 Dfwrite_variation5.phpt7 /* Prototype : int fwrite(resource fp, string str [, int length])
106 $fp = fopen($filename,'w');
107 fwrite($fp, $value);
108 fclose($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);
H A Drename_variation5.phpt20 $fp = fopen($filename, "w");
21 fclose($fp);
46 $fp = fopen($filename, "w");
47 fclose($fp);
/PHP-5.4/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.4/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.4/ext/phar/tests/cache_list/files/
H A Dnophar.phar115 $fp = fopen(__FILE__, 'rb');
116 fseek($fp, self::LEN);
117 $L = unpack('V', $a = (binary)fread($fp, 4));
125 $last = (binary)fread($fp, $read);
183 file_put_contents($temp . '/' . $path, self::extractFile($path, $file, $fp));
239 static function extractFile($path, $entry, $fp)
246 $data .= @fread($fp, $c);
250 $data .= @fread($fp, 8192);
H A Dopenssl.phar115 $fp = fopen(__FILE__, 'rb');
116 fseek($fp, self::LEN);
117 $L = unpack('V', $a = (binary)fread($fp, 4));
125 $last = (binary)fread($fp, $read);
183 file_put_contents($temp . '/' . $path, self::extractFile($path, $file, $fp));
239 static function extractFile($path, $entry, $fp)
246 $data .= @fread($fp, $c);
250 $data .= @fread($fp, 8192);
/PHP-5.4/ext/phar/tests/files/
H A Dinclude_path2.phar115 $fp = fopen(__FILE__, 'rb');
116 fseek($fp, self::LEN);
117 $L = unpack('V', $a = (binary)fread($fp, 4));
125 $last = (binary)fread($fp, $read);
183 file_put_contents($temp . '/' . $path, self::extractFile($path, $file, $fp));
239 static function extractFile($path, $entry, $fp)
246 $data .= @fread($fp, $c);
250 $data .= @fread($fp, 8192);
H A Dnophar.phar115 $fp = fopen(__FILE__, 'rb');
116 fseek($fp, self::LEN);
117 $L = unpack('V', $a = (binary)fread($fp, 4));
125 $last = (binary)fread($fp, $read);
183 file_put_contents($temp . '/' . $path, self::extractFile($path, $file, $fp));
239 static function extractFile($path, $entry, $fp)
246 $data .= @fread($fp, $c);
250 $data .= @fread($fp, 8192);
H A Dopenssl.phar115 $fp = fopen(__FILE__, 'rb');
116 fseek($fp, self::LEN);
117 $L = unpack('V', $a = (binary)fread($fp, 4));
125 $last = (binary)fread($fp, $read);
183 file_put_contents($temp . '/' . $path, self::extractFile($path, $file, $fp));
239 static function extractFile($path, $entry, $fp)
246 $data .= @fread($fp, $c);
250 $data .= @fread($fp, 8192);
/PHP-5.4/ext/mysqli/tests/
H A Dmysqli_query_local_infile_large.phpt24 if (!$fp = fopen($file, 'w'))
37 $bytes += fwrite($fp, (binary)(++$rowno . ";" . $data));
39 $bytes += fwrite($fp, ++$rowno . ";" . $data);
41 fclose($fp);
/PHP-5.4/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);
/PHP-5.4/ext/standard/tests/array/
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.4/ext/xml/tests/
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))) {
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))) {
/PHP-5.4/ext/phar/tests/
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);
H A Drefcount1.phpt22 $fp = fopen($pname . '/b/c.php', 'wb');
23 fwrite($fp, b"extra");
24 fclose($fp);
/PHP-5.4/ext/standard/tests/math/
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.4/ext/session/tests/
H A Dsession_regenerate_id_error.phpt33 $fp = fopen(__FILE__, "r");
80 /*24*/ $fp
91 fclose($fp);

Completed in 84 milliseconds

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