0

我正在为 Wordpress 网站创建用户提交的发布工具。

用户可以输入图像 URL,我希望将其与标题和帖子内容等其他内容一起添加到帖子中。

我已经使用常规图像附件完成了这项工作。我创建帖子,然后使用此脚本附加图像:

 $files = $_FILES['upload_attachment'];

 $file = array(
    'name' => $files['name'],
    'type' => $files['type'],
    'tmp_name' => $files['tmp_name'],
    'error' => $files['error'],
    'size' => $files['size']
);

$_FILES = array("upload_attachment" => $file);

foreach ($_FILES as $file => $array) {
     $newupload = insert_attachment($file,$userPost);
    }

但是我怎样才能使用insert_attachment()或类似但使用 URL 来做同样的事情呢?

4

1 回答 1

0

我认为您可以使用file_get_contents()file_put_contents()。你可能不得不做这样的事情:

file_put_contents('your_file_on_server.xxx', file_get_contents('http://someurl.com/filename.xxx'));

这将从指定的 url 下载文件并将其保存到您的服务器。从那里您可以稍微修改原始代码以将其附加到帖子中。

于 2012-08-07T03:15:52.647 回答