fopen()无法打开流:无此文件或目录

时间:2019-02-13 21:55:48

标签: php

我的PHP:

<?php
$today = date("Ymd");
$fp = fopen("days/" . $today . "/vc-" . $today . ".txt", "w");
$savestring = 'Hello';
fwrite($fp, $savestring);
fclose($fp);
?>
如果文件不存在,则

fopen()应该正在创建文件,但是会记录以下错误:Warning: fopen(days/20190213/vc-20190213.txt): failed to open stream: No such file or directory。我知道之前曾有人问过这个问题,但通常答案是创建文件的权限不足或URL格式错误。我所有文件夹的权限为775。

0 个答案:

没有答案