Questions tagged «fopen»

11
C Fopen vs开放
您是否有任何其他原因要使用(语法上的除外) FILE *fdopen(int fd, const char *mode); 要么 FILE *fopen(const char *path, const char *mode); 代替 int open(const char *pathname, int flags, mode_t mode); 在Linux环境中使用C时?
219 c  linux  unix  file-io  fopen 

6
PHP-无法打开流:没有这样的文件或目录
在PHP脚本,调用是否include(),require(),fopen(),或它们的衍生物,例如include_once,require_once或者甚至move_uploaded_file(),一个经常遇到错误或警告: 无法打开流:没有这样的文件或目录。 有什么好的方法可以快速找到问题的根本原因?

4
在PHP中编写新行到文件(换行)
我的代码: $i = 0; $file = fopen('ids.txt', 'w'); foreach ($gemList as $gem) { fwrite($file, $gem->getAttribute('id') . '\n'); $gemIDs[$i] = $gem->getAttribute('id'); $i++; } fclose($file); 由于某种原因,它\n以字符串形式编写,因此文件如下所示: 40119\n40122\n40120\n42155\n36925\n45881\n42145\n45880 根据Google的指示,它告诉我使用\r\n,但\r它是回车符,这似乎不是我想要执行的操作。我只希望文件看起来像这样: 40119 40122 40120 42155 36925 45881 42145 45880 谢谢。
109 php  newline  fopen  fwrite  linefeed 

10
fopen已弃用警告
在Visual Studio 2005 C ++编译器上,当我的代码使用fopen和此类调用时,出现以下警告。 1>foo.cpp(5) : warning C4996: 'fopen' was declared deprecated 1> c:\program files\microsoft visual studio 8\vc\include\stdio.h(234) : see declaration of 'fopen' 1> Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.' 我该如何预防?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.