我想要做的是捕获用户提交的 URL 的屏幕截图并使用http://open.thumbshots.org/image.aspx?url=http://google.com。问题是,如果由于某种原因没有捕获屏幕截图(因为用户可以输入无效的 url),我得到的是 open.thumbshots.org 的默认图像,上面写着“thumbshots.com Imagecoming soon”。如果出现故障,如何显示我的默认图像而不是该图像?
$url = $_POST['user_url'];
和 html
<img src="http://open.thumbshots.org/image.aspx?url=<?php echo $url;?>" width = "180" height = "150" />
这里我需要在显示图像之前决定,如果返回的图像是缩略图的默认图像,则显示我的默认图像