尝试写入文件时出错

时间:2014-06-19 16:19:02

标签: php fopen fwrite

我正在尝试写一个文件。我不断收到错误,我不知道该怎么做。是否有人对此有任何建议。非常感谢 错误:

  

警告:fopen(Library / WebServer / Documents / gasDev / test_files / 850_855_csv_tests / 855_export / GUNB0855.Z9000404):无法打开流:/ Library / WebServer / Documents / gasDev / src / controller /中没有此类文件或目录containerController.php

这是我正在使用的功能:

public function saveFile($saveFile,$content){
    $newFile = fopen($saveFile, 'w');
    fwrite($newFile, $content);
    fclose($newFile);
}//end saveFile()

1 个答案:

答案 0 :(得分:2)

您无法读取或写入不存在的目录。应该在尝试打开它之前运行此答案中的代码

PHP: fopen to create folders