I’m trying to do 2 things:
1) Get thumbnails from Bing and display it. The URL looks like this http://tse4.mm.bing.net/th?id=OIP.M764a682297c84c4e519c91b4d39a5731o0
I tried doing the following but it didn’t work.
<?php
$file = 'http://tse4.mm.bing.net/th?id=OIP.M764a682297c84c4e519c91b4d39a5731o0';
header('Content-Type: image/jpg');
header('Content-Length: ' . filesize($file));
echo file_get_contents($file);
?>
- the second thing I’m trying to do is to download thumbnails from bing (the same as the previous URL)
<?php $content = file_get_contents('http://tse4.mm.bing.net/th?id=OIP.M27a2faeba4dbe75a45036d09675745dfH0&h=200&w=210'); echo file_put_contents('/images/image.jpg', $content); ?>
Non of the above worked, it might be cause the URL doesn't end with a JPEG extension but I'm not sure. any ideas how can i fix this?
Thanks.