Skip to content

Instantly share code, notes, and snippets.

@oquno
Created September 7, 2010 13:44
Show Gist options
  • Save oquno/568348 to your computer and use it in GitHub Desktop.
Save oquno/568348 to your computer and use it in GitHub Desktop.
<img src="<?php
preg_match('/<img\ssrc="(http:\/\/farm\d+\.static\.flickr\.com\/.*\.jpg)/', $description, $matches);
$original_image_url = $matches[1];
$thumbnail_image_url = preg_replace('/_.\.jpg$/', '_s.jpg', $original_image_url);
echo $thumbnail_image_url; ?>" width="75" height="75" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment