PHP - 从另一个驱动器打开文本文件

时间:2015-10-30 13:13:31

标签: php file fopen

我正在尝试通过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它不起作用。还有其他方法吗?

1 个答案:

答案 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盘。它正在发挥作用。