我希望能够通过 phpbb 将远程文件上传到我的服务器,而无需先将文件下载到我的 PC。如何做到这一点?
我有一些我已经测试过的简单代码,它可以完成这项工作,但是我可以把它放在哪里,我需要在 phpBB 中修改什么?
<form method="post">
<input name="url" size="50"/>
<input name="submit" type="submit"/>
</form>
<?php
// maximum execution time in seconds
set_time_limit(24 * 60 * 60);
if (!isset($_POST['submit'])) die();
// folder to save downloaded files to. must end with slash
$destination_folder = 'mydownloads/';
$url = $_POST['url'];
$newfname = $destination_folder . basename($url);
//Open remote file
$file = fopen($url, "rb");
if ($file) {
//Write to local file
$newf = fopen($newfname, "wb");
if ($newf) {
while (!feof($file)) {
fwrite($newf, fread($file, 1024 * 8), 1024 * 8);
}
}
}
if ($file) {
fclose($file);
}
if ($newf) {
fclose($newf);
}
?>
或者是否可以在phpBB中使用远程头像功能(即includes/functions_upload.php -> function remote_upload($upload_url))?我当然需要通过通常的 phpBB 函数发送远程文件,以将其插入数据库等。