我遇到的问题是我可以写入本地驱动器,但不能写入网络驱动器...我可以在两台计算机之间复制文件,但是fwrite不起作用...
//works
$myfile = fopen("D:\\mapcycle.txt", 'w') or die("Unable to open file!");
//Does Not Work, Drive is properly mapped and can copy files from drive to drive via the lan
$myfile = fopen("X:\\mapcycle.txt", 'w') or die("Unable to open file!");
// Does not work
$myfile = fopen("\\\\INSURGENCY\\mapcycle.txt", 'w') or die("Unable to open file!");
我检查了这些计算机之间的安全性,看起来它设置正确,但并没有说我没有错过任何东西。