solución Javascript (jQuery con la participación, aunque esto debería ser posible prescindir de él también):
<script type='text/javascript'>
$(function(){
var files = [
'warning-large.png',
'warning-large-corrupted.png',
'http://www.example.com/none.gif',
'http://sstatic.net/stackoverflow/img/favicon.ico'
];
for (var n in files) {
var img = $('<img/>');
img.error(function(){
alert('error:\n' + this.src);
});
img.load(function(){
alert('success:\n' + this.src);
});
img.attr('src', files[n]);
}
});
</script>
Broken in in corrupted or missing? – AlienWebguy
dup: http://stackoverflow.com/questions/3677965/php-detecting-if-source-image-url-link-leads-to-a-broken-image –
PHP no muestra imágenes, * navegadores * do . Tal vez te refieres a PHP no podrá enviarlo al navegador ... – pavium