0

我在 Stackoverflow 中搜索了这个问题,但我不明白答案。对不起。

好吧,我有一个由 PHP 处理的 html 上传表单。

以下是我的 php 上传脚本:

if($image["name"] != "")
{
//$path = PATH . DS . "uploads" . DS . "products" . DS . $id;
$path = "../../uploads" . DS . "products" . DS . $id;
if(!is_dir($path))
{
    mkdir($path);
}
chmod($path, 0755);
//move_uploaded_file($image["tmp_name"], $path . DS . $image["name"]);
move_uploaded_file($image["tmp_name"], $path . DS . $uploadImage);//exit;
}

现在我正在尝试将相同的图像上传到另一个网站文件夹。喜欢:www.mysitename/folder/finalfolder。同时与 PHP。

有没有办法把它上传到另一个网站?

4

1 回答 1

0

The other server will need a script to handle the request. You can then POST that data to the other server's script using a CURL request. (See the link posted by @Andrey Volk)

Or, as suggested here: FTP will work too, if you have that level of access to the server.

于 2013-05-28T16:45:05.777 回答