使用phpflickr时出现问题

时间:2009-12-01 14:52:06

标签: php upload phpflickr

我在Windows Vista和WAMP2.0上使用phpFlickr(最后稳定版本):

我有这些:

Strict Standards: Assigning the return value of new by reference is deprecated in .../phpFlickr.php on line 91

Strict Standards: Assigning the return value of new by reference is deprecated in .....phpFlickr.php on line 330

Strict Standards: Assigning the return value of new by reference is deprecated in ...phpFlickr.php on line 399

Strict Standards: Assigning the return value of new by reference is deprecated in phpFlickr.php on line 468

Strict Standards: Assigning the return value of new by reference is deprecated in HTTP/Request.php on line 341

Strict Standards: Assigning the return value of new by reference is deprecated in ../Request.php on line 659

Strict Standards: Assigning the return value of new by reference is deprecated in ....quest.php on line 672

Strict Standards: Assigning the return value of new by reference is deprecated in ...../Request.php on line 717

Strict Standards: Assigning the return value of new by reference is deprecated in ....PEAR.php on line 569

Strict Standards: Assigning the return value of new by reference is deprecated in .....PEAR.php on line 572

因为我正在使用symfony;我不想在GUi上显示此警告消息,我想将我的请求重定向到我已定义的页面。在方法sync_upload之后显示警告消息。

这是我的代码:

require_once("../Flickr/phpFlickr.php");
//authentication
        $f = new phpFlickr("key","secret");
        if($f!=null) echo  "connexion réussie</br>";
        $f->setToken("token");

        $f->enableCache("fs", "../Flickr/cache");

        $myPerms =$f->auth("write");
        echo  "permission définie".$myPerms."</br>";
//upload
        $tags="test1,test2";
        $upload_photo_id=$f->sync_upload($filePhotoName,"www.koutchoumi.com",null,$tags);
        echo $upload_photo_id."_test";
        $photo=$f->photos_getInfo($upload_photo_id);
        print_r($photo) ;
        $url=$f->buildPhotoURL($photo);
        echo "</br>".$url."</br>"  ;

1 个答案:

答案 0 :(得分:1)

看起来你正在使用PHP 5.3

只需更改error_reporting设置,以便不显示E_DEPRECATED类型的错误。