我正在尝试通过PHP打开文本文件。当我在Project文件夹htdocs
中有文本文件时,下面的代码工作正常。
<?php
$myfile = fopen("Updates/updates.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("HRupdates/updates.txt"));
fclose($myfile);
?>
现在我想从驱动器D
打开另一个驱动器中的文件。
我试过这样D:/Updates/updates.txt
它不起作用。还有其他方法吗?
答案 0 :(得分:2)
是的,它有办法:)。小心在文件的路径中使用正斜杠。
<?php
$file=fopen('G:\\webdic.txt', "r") or die('Unable to open file');
echo fread($file,filesize('G:\\webdic.txt'));
fclose($file);
?>
我在电脑上使用G盘。它正在发挥作用。