<?php

$string = 'http://w...content-available-to-author-only...m.br/276255_Papel-de-Parede-Meme-Obama-Not-Bad_1280x1024.jpg';
preg_match('/(https?:\/\/[^\s\'\"]*)/', $string, $match);
$reply = '<img src="'.$match[0].'" alt="" width="" height="" />';

echo $reply;
