eXorithm – Execute Algorithm: View / Run Algorithm photobucket

Logo Beta

function photobucket ($url
{
  $str = file_get_contents$url);
  preg_match_all'/<img[^>]+>/i'$str$result); 
  
  $strPics = ""
  foreach$result as $img_tag) {
    foreach$img_tag as $img) {
      if( !strpos$img'class="under off"') ) continue
      preg_match'/< *img[^>]*src *= *["']?([^"']*)/i'$img$imgURLs);
      $imgURL = str_replace"/th_""/"$imgURLs[1]);
      $strPics .= $imgURL . "n"
    }
  }
  return $strPics