PHP判断图片是否存在和jquery中load事件对图片的处理
在公司的图片服务器中,同一个产品一般会存在对应的大图和缩略图.因此,我们在开发手机端的web网站时,默认使用的是产品图片的缩略图,查询数据库时获取的是缩略图的路径.但是,不知什么原因,时不时的,测试的同事总会找到我们,说产品图片没显示出来,是个bug,需要修改.
那么,问题来了.
(1)PHP后台如何判断远程服务器上的图片是否存在
解决思路:获取图片路径-->对图片是否存在进行判断-->不存在,使用大图
/** * @desc 检查远程图片是否存在 * @param string $url 图片远程地址 * @return boolean $found 存在为true,否则false */ function check_remote_file_exists($url) { //curl初始化 $curl = curl_init($url); //不取回数据 curl_setopt($curl, CURLOPT_NOBODY, true); //发送请求,接收结果 $result = curl_exec($curl); $found = false; if ($result !== false) { //检查http响应码是否为200 $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); if ($statusCode == 200) { $found = true; } } //关闭curl资源 curl_close($curl); //返回结果 return $found; } $url=‘http://home.baidu.com/resource/r/home/img/logo-yy.gif‘; $error_url=‘http://home.baidu.com/resource/r/home/img/logo-yy111111.gif‘; var_dump(check_remote_file_exists($url)); echo ‘<br />‘; var_dump(check_remote_file_exists($error_url)); /* 以上例子输出: bool(true) bool(false) */
1 $url=‘http://home.baidu.com/resource/r/home/img/logo-yy.gif‘; 2 $error_url=‘http://home.baidu.com/resource/r/home/img/logo-yy111111.gif‘; 3 4 if( @fopen( $error_url, ‘r‘ ) ) 5 { 6 echo ‘File Exits‘; 7 } 8 else 9 { 10 echo ‘File Do Not Exits‘; 11 } 12 /* 13 以上例子输出:File Exits 14 */
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5 <title>load event</title> 6 <script language="javascript" src="jquery.js"></script> 7 </head> 8 <body> 9 <img src="http://home.baidu.com/resource/r/home/img/logo-yy.gif" alt="" id=‘test‘/> 10 </body> 11 <script> 12 //jquery load event test 13 //var h=$(‘#test‘).height(); 14 //document.write(h); 15 $(‘img‘).each(function(){ 16 //先隐藏图片 17 $(this).hide(); 18 //监听load事件 19 $(this).bind(‘load‘,function(){ 20 //加载完成,显示图片 21 $(this).show(); 22 }); 23 }); 24 </script> 25 </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。