对于其中一个PHP文件,我使用的是一个CSV文件(file.csv)。当我提到远程URL时,它无法正常工作。但是当我将文件上传到同一目录时,它就可以了。
这是工作(同一目录中的csv文件和php文件)
$handle = fopen("file.csv","r") or die("file dont exist");
// get data
while (!feof($handle )){
// do the stuff
}
PHP中的远程URL无效。
$handle = fopen("http://www.mywebsite.com/dir/file.csv","r") or die("file dont exist");
// get data
while (!feof($handle )){
// do the stuff
}
任何人都可以帮我纠正远程网址代码吗?