我一直在互联网上寻找解决方案,但我仍然找不到使用php复制文件网络的答案。 请查看我的示例代码及其输出:
<?php
$source = ("file://///server/path/file.txt");
$destination = 'sample.txt';
$data = file_get_contents($source);
$handle = fopen($destination, "w");
if(fwrite($handle, $data)){
echo "success";
fclose($handle);
}
else
{
echo"failed";
fclose($handle);
}
?>
网络输出:
失败
目标文件夹输出:
带有空白内容的sample.txt。
我授予了访问该文件的权限,可以使用我的网络进行访问。并正在使用Windows 7平台
从本地驱动器复制文件非常容易。
我该怎么做才能从服务器复制文件?
我甚至试过\\(computername/ipaddress)\path\file.txt
但不值得。我只是利用谷歌的代码。
提前致谢