0

I'm trying to post a photo to Facebook and it works as long as the image is in the same folder as the PHP script:

  $file= "myimage.png";
    $args = array(
        'message' => 'Photo from application',
        );
      $args[basename($file)] = '@' . realpath($file);
    $ch = curl_init();

What do I need to change to make it work for external images, e.g.:

$file= "http://www.example.com/myimage.png";
4

2 回答 2

3

您必须首先将图像下载到您的服务器,然后使用该路径。这是将图像下载到临时文件的示例:

$temp_name = tempnam(sys_get_temp_dir(), "external");
copy($file, $temp_name);
// ...
$args[basename($file)] = '@' . realpath($temp_name);
于 2013-06-11T20:28:43.173 回答
1

为了确保文件下载没有损坏,我更喜欢这种方式。

$path = '/where/to/save/file';
$url = 'http://path.to/file';

$remote = fopen($url, "rb");
if($remote) {
    $local = fopen($path, "wb");
    if($local) {
        while(!feof($remote)) {
            fwrite($local, fread($remote, 1024 * 8 ), 1024 * 8);
        }
    }
}
if ($remote) fclose($remote);
if ($local)  fclose($local);

我建议使用uniqid()来生成路径。

然后将路径传递给您的代码。

由于该文件现在将是本地文件,因此应该可以正常上传。

于 2013-06-11T20:36:58.470 回答