Evidentemente el problema es la ruta relativa de las imágenes pero no encuentro nada en la documentación, un parche sería:
Código HTML:
Ver original<?php
$host = 'http://ipchicken.com';
$opt = array('http' => array(
'method' => "GET",
'User-Agent: '.$_SERVER['HTTP_USER_AGENT']. '\r\n',
'header' => array('Accept: '.$_SERVER['HTTP_ACCEPT']. '\r\n',
'Content-type: application/x-www-form- urlencoded\r\n',
'Content-type: text/xml; charset=utf-8')) );
$context = stream_context_create($opt);
echo $data = str_replace("images", $host."/images/", file_get_contents($host, false, $context));
?>
Salu2