Skip to content


phpFlickr 2.3.1

I have just updated the library to include every publicly available API call. This includes collections and pandas (and some other useful calls). Enjoy!

Download page

Posted in Releases.

Tagged with , .


6 Responses

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.

  1. Hugo Lim says

    thousand thanks for this great app!

    my website uses your wrapper class beautifully!

    ReplyReply
  2. miklos says

    I don't know if this has been mentioned before or not, but in phpFlickr.php on line 209, it reads:

    if (!($this->response = $this->getCached($args)) || $nocache) {

    This was causing it to hang for me, so I changed it to:

    if (!($this->response == $this->getCached($args)) || $nocache) {

    …the script no longer crapped out.

    ReplyReply
    • Dan says

      I know that at first glance, this code might seem incorrect, but it is supposed to only have one "=". In PHP, an assignment statement returns the value that is assigned, so !($foo = bar()) returns true if bar() returns a non-true result.

      ReplyReply
  3. miklos says

    Still can't get it working… damn it.

    ReplyReply
  4. miklos says

    Yeah, thanks… it turns out the problem seems to be something else (maybe host issues?)… the script goes into a big loop – seems to crap out on phpFlickr.php line 227, $this->req->sendRequest()

    I set up a local server, copied and pasted all the files I've been working with, and it works here.

    ReplyReply



Some HTML is OK

or, reply to this post via trackback.