php无法在网络驱动器上打开文本文件

时间:2017-04-14 16:24:06

标签: php network-drive httpbackend

我编写了一个PHP脚本,用于在“写入”模式下在网络驱动器上创建文本文件,但由于某种原因,无法创建文本文件。这是原始剧本:

<?php
error_reporting(E_ALL); 
ini_set('display_errors', 1);

$myfile = fopen("Z:\\User\\WebInput\\inputParams.txt", "w") or die("Unable 
to open file!");

fwrite($myfile, "Attr\tValue".PHP_EOL);
fclose($myfile);

?>

我收到的错误信息是:

  

警告:fopen(Z:\ User \ WebInput \ inputParams.txt):无法打开流:没有这样的文件或目录。

我已设置文件夹'WebInput'权限,以便每个人都可以读取和写入它,但它仍然没有说明这样的目录。有人可以帮忙吗?

0 个答案:

没有答案