Issue when using phpflickr
I use phpFlickr (last stable version) on Windows Vista and WAMP2.0 :
and I have these :
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
As i'm using symfony ;, i don't want to show this warning message on the GUi and i want to redirect my request to a page i have defined.THe warning message is shown after the method sync_upload.
This is my code:
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>" ;
Looks like you're using PHP 5.3
Just change your error_reporting
settings so that errors of type E_DEPRECATED
are not displayed.
精彩评论