dpl74687 2013-08-25 02:20
浏览 244
已采纳

PHP创建一个日期为文件名的.txt文件

Is it possible to use date as a filename when creating/opening one with fopen? I have a form that writes user data to txt file, but I would like that everytime user submits info, new txt file is generated with date in file name.

Here is my try

$myfile='/home/myaccount/public_html/test/tiog/'.date('m-d-Y_hia').'.txt';
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $upisufajl);
fclose($fh);

Error I'm getting is

Warning: fopen() [function.fopen]: Filename cannot be empty in /home/...

And how could I encode it in UTF8, so that it supports special characters (čćšđž)?

Thanks

  • 写回答

1条回答 默认 最新

  • doujianwei8217 2013-08-25 02:30
    关注

    Jeremy, you are getting that error because your variable is misnamed:

    $myfile= .... pen($myFile ....
       ^                 ^
       '-----------------'--------- see?
    

    The second issue you have (regarding file encoding) is because text files are usually in plain ascii. If you want to save in UTF-8, it's perfectly fine...just make sure the string you are saving is in UTF-8.

    Example:

    file_put_contents($myfile, utf8_encode($upisufajl));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序