1

我正在尝试将文件从远程文件加载到我的云文件容器中。

下面是云文件支持人员给我的示例代码:

<?php

    require('cloud/cloudfiles.php');

    $res  = fopen("http://images.piccsy.com/cache/images/66653-d71e1b-320-469.jpg", "rb");
    $temp = tmpfile();
    $size = 0.0;
    while (!feof($res))
    {
        $bytes = fread($res, 1024);
        fwrite($temp, $bytes);
        $size += (float) strlen($bytes);
    }

    fclose($res);
    fseek($temp, 0);

    //
    $auth = new CF_Authentication('user','token ');
    //Calling the Authenticate method returns a valid storage token and allows you to connect to the CloudFiles Platform.
    $auth->authenticate();

    $conn = new CF_Connection($auth);

    $container = $conn->create_container("example");
    $object = $container->create_object("example.jpg");
    $object->content_type = "image/jpeg";
    $object->write($temp, $size);

    fclose($temp);
?>

我遇到的问题是以下错误:

Fatal error: Call to a member function create_container() on a non-object in /home2/sharingi/public_html/daily_dose/remote_test.php on line 24

不确定我在这里没有注意到什么。

4

1 回答 1

0

似乎$conn没有成功实例化一个对象。这就是问题所在,但解决方案并不明确。

CF_Connection定义吗?是否error_reporting(E_ALL)为您提供更多有用的信息?var_dump($conn instanceof CF_Connection)输出什么?

这应该为您指明正确的方向。

于 2011-03-14T00:36:11.057 回答