标签:style blog color div log ad on sp
比网上的那些都简洁(网上那些基本都不能用)修改upload为你要隐藏的图片的目录,static/404.png为你的404图片目录
效果是xxx.php/xx.xx(只要是图片类型就可以!可以自动判断类型!)
1 <?php 2 header("Content-type: image/".(@end(explode(".","upload/".$_SERVER[‘PATH_INFO‘])))); 3 if(file_exists("upload/".$_SERVER[‘PATH_INFO‘])) 4 echo file_get_contents("upload/".$_SERVER[‘PATH_INFO‘]); 5 else 6 echo file_get_contents("static/404.png"); 7 ?>
PHP隐藏图片源地址img.php/xx.png,布布扣,bubuko.com
标签:style blog color div log ad on sp
原文地址:http://www.cnblogs.com/xiaofan233/p/3919292.html