0

我在 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>"  ;
4

1 回答 1

1

看起来你正在使用 PHP 5.3

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

于 2009-12-01T14:58:18.973 回答