从直接下载 link 下载文件并保存到服务器 - PHP
Download file from direct download link and save to server - PHP
我使用 Google 的我的地图。问题是 Google 在使用它们的 API 时有很多限制,这使得自动插入或从地图检索数据变得困难。
我可以直接下载 link 到此地图文件,点击后可将 KML 文件下载到任何设备。
我想要的是 PHP 中的代码来打开这个 link,下载 KML 文件并自动保存到我的服务器。
我在另一个问题中看到了这个,但它对我不起作用:
shell_exec("wget -P /target/directory/ http://download.link.com/download.zip");
我认为问题是我的 link 没有 link 文件(不以 .zip 或其他文件扩展名结尾)
这是我的 link 的示例:here
谢谢!
您可以使用 file_put_contents
and file_get_contents
函数,如下所示:
$path = "/target/directory/file.kml"; // Where the file should be saved to
$link = "https://www.google.com/maps/d/u/0/kml..."; // Download link
file_put_contents($path, file_get_contents($link));
这是使用 cURL 将信息保存到文件中的一种解决方案
<?php
$ch = curl_init();
// You can add here the URL contains the information which should be fetched
curl_setopt($ch, CURLOPT_URL,'https://www.google.com/maps/d/kml?mid=1FcgdJK9tLMt_dygTbxObJHjyCoo&forcekml=1&cid=mp&cv=qDJ98FtrON4.he.');
// You can define the name which will be created with the extension, in this case it's .KML
$openFile = fopen('file.KML', 'w+');
// Here Curl will save the fetched information into the file.
curl_setopt($ch, CURLOPT_FILE, $openFile);
curl_exec ($ch);
curl_close ($ch);
fclose($openFile);
确保您对服务器上将创建文件的文件夹授予权限。
我使用 Google 的我的地图。问题是 Google 在使用它们的 API 时有很多限制,这使得自动插入或从地图检索数据变得困难。
我可以直接下载 link 到此地图文件,点击后可将 KML 文件下载到任何设备。
我想要的是 PHP 中的代码来打开这个 link,下载 KML 文件并自动保存到我的服务器。
我在另一个问题中看到了这个,但它对我不起作用:
shell_exec("wget -P /target/directory/ http://download.link.com/download.zip");
我认为问题是我的 link 没有 link 文件(不以 .zip 或其他文件扩展名结尾) 这是我的 link 的示例:here
谢谢!
您可以使用 file_put_contents
and file_get_contents
函数,如下所示:
$path = "/target/directory/file.kml"; // Where the file should be saved to
$link = "https://www.google.com/maps/d/u/0/kml..."; // Download link
file_put_contents($path, file_get_contents($link));
这是使用 cURL 将信息保存到文件中的一种解决方案
<?php
$ch = curl_init();
// You can add here the URL contains the information which should be fetched
curl_setopt($ch, CURLOPT_URL,'https://www.google.com/maps/d/kml?mid=1FcgdJK9tLMt_dygTbxObJHjyCoo&forcekml=1&cid=mp&cv=qDJ98FtrON4.he.');
// You can define the name which will be created with the extension, in this case it's .KML
$openFile = fopen('file.KML', 'w+');
// Here Curl will save the fetched information into the file.
curl_setopt($ch, CURLOPT_FILE, $openFile);
curl_exec ($ch);
curl_close ($ch);
fclose($openFile);
确保您对服务器上将创建文件的文件夹授予权限。