/PHP-5.5/ext/standard/tests/file/ |
H A D | unlink_variation2.phpt | 24 $fp = fopen($filename, "w"); 29 fclose($fp);
|
H A D | glob_variation2.phpt | 18 $fp = fopen("$file_path/$dir_name/file.text", "w"); 19 fclose($fp);
|
H A D | rename_variation5.phpt | 20 $fp = fopen($filename, "w"); 21 fclose($fp); 46 $fp = fopen($filename, "w"); 47 fclose($fp);
|
H A D | fseek_ftell_rewind_error2.phpt | 23 $fp = fopen(__FILE__, "r"); 24 var_dump( ftell($fp, 10) ); 44 fclose($fp); 45 var_dump(ftell($fp));
|
H A D | fseek_ftell_rewind_error3.phpt | 23 $fp = fopen(__FILE__, "r"); 24 var_dump( rewind($fp, 10) ); 44 fclose($fp); 45 var_dump(rewind($fp));
|
H A D | 006_error.phpt | 10 $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 D | offset_array.phpt | 16 $fp = fopen(__FILE__, "r"); 17 var_dump($arr[$fp]);
|
/PHP-5.5/ext/dba/ |
H A D | dba_cdb.c | 78 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 D | README | 257 $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 D | session_regenerate_id_error.phpt | 33 $fp = fopen(__FILE__, "r"); 80 /*24*/ $fp 91 fclose($fp);
|
/PHP-5.5/ext/phar/tests/ |
H A D | refcount1.phpt | 22 $fp = fopen($pname . '/b/c.php', 'wb'); 23 fwrite($fp, b"extra"); 24 fclose($fp);
|
H A D | open_for_write_newfile_c.phpt | 23 $fp = fopen($pname . '/b/new.php', 'wb'); 24 fwrite($fp, 'extra'); 25 fclose($fp);
|
H A D | open_for_write_newfile_c_5_2.phpt | 21 $fp = fopen($pname . '/b/new.php', 'wb'); 22 fwrite($fp, 'extra'); 23 fclose($fp);
|
/PHP-5.5/ext/standard/tests/math/ |
H A D | dechex_variation1.phpt | 33 $fp = fopen(__FILE__, "r"); 81 /*27*/ $fp 91 fclose($fp);
|
H A D | dechex_variation1_64bit.phpt | 33 $fp = fopen(__FILE__, "r"); 81 /*27*/ $fp 91 fclose($fp);
|
H A D | decoct_variation1.phpt | 34 $fp = fopen(__FILE__, "r"); 82 /*27*/ $fp 92 fclose($fp);
|
H A D | decoct_variation1_64bit.phpt | 34 $fp = fopen(__FILE__, "r"); 82 /*27*/ $fp 92 fclose($fp);
|
/PHP-5.5/ext/xml/tests/ |
H A D | xml003.phpt | 61 if (!($fp = @fopen("xmltest.xml", "r"))) { 65 while ($data = fread($fp, 4096)) { 66 if (!xml_parse($xml_parser, $data, feof($fp))) {
|
H A D | xml001.phpt | 20 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 D | array_push_variation2.phpt | 37 $fp = fopen(__FILE__, "r"); 85 /*25*/ $fp 97 fclose($fp);
|
H A D | array_diff_variation8.phpt | 24 $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 D | ctype_digit_variation1.phpt | 38 $fp = fopen(__FILE__, "r"); 86 /*25*/ $fp 97 fclose($fp);
|
H A D | ctype_upper_variation1.phpt | 38 $fp = fopen(__FILE__, "r"); 86 /*25*/ $fp 97 fclose($fp);
|
/PHP-5.5/ext/gmp/tests/ |
H A D | 009.phpt | 31 $fp = fopen(__FILE__, 'r'); 33 var_dump(gmp_div_q($fp, $fp));
|
/PHP-5.5/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_exec_load_data.phpt | 68 $fp = fopen($filename, "w"); 69 fwrite($fp, b"1;foo\n"); 70 fwrite($fp, b"2;bar"); 71 fclose($fp);
|