php隐藏图片
❶ php如何隐藏图片的真实地址
楼主你好,PHP可以使用base64编码来隐藏图片真实地址哦,隐藏后会显示data:QUFodHRwOi8vd3d3LmJhaWR1这种格式的图片地址,向某宝这类网站目前都是使用这种方式,并且可以提高加载速度,具体的PHP代码可以如下:
<?php
header('Content-type: text/html; charset=utf-8');
if (strtolower($_SERVER['REQUEST_METHOD']) == 'post') {
if (!isset($_FILES['file'])) exit('请上传图片');
$file = $_FILES['file'];
$dataType = array('png', 'jpg', 'jpeg', 'gif');
$ext = strtolower(substr(strrchr($file['name'], '.'), 1));
if (!isset($file['tmp_name']) || $file['error'] > 0) exit('上传失败');
if (!in_array($ext, $dataType)) exit('图片格式错误');
$file = file_get_contents($file['tmp_name']);
$data = base64_encode($file);
echo 'data:image/'.$ext.';base64,'.$data;
} else {
?>
<html>
<head><title>图片base64编码</title></head>
<body>
<form method="post">
<input type="file">
<input type="submit" value="提交">
</form>
</body>
</html>
<?php
}
?>
❷ javascript php如何隐藏图片真实地址用问号的形式表示.
这是因为怕被盗图,或者被破译。很简单地,所有的图片显示都是从一个img.php 出去,后面上?后面跟参数,img.php页面根据不同的参数,才找到服务器上的图片。
img.php代码示例:
header("Content-type: image/png;charset=utf8"); //该页面是显示图片的
$im = imagecreatefromjpeg("../img/mat/ad/linktech/{$v}/{$s}.jpg"); //根据不同参数找到对应的图片
header("Cache-Control: max-age=1, s-maxage=1, no-cache, must-revalidate");
header("Content-type: image/png;charset=utf8");
imagepng($im); //显示图片文件
imagedestroy($im);
如果参数错误,或者访问没有session控制,就不显示图片。
❸ php文本框后面跟个图片怎样隐藏
你得说明白啊 最起码给个图片或者代码什么的啊 不然怎么回答啊
❹ 求用PHP将远程调用的图片地址隐藏的方法
写一个 image.php 通过传递参数来决定显示什么图片;image.php:<?php$url = isset($_GET['url']) ? trim($_GET['url']) : '';if (!empty($url)){ echo $url;}else{ echo 'error';} <img src="image.php?url= http://xxx.com/xxx.jpg">
❺ php 隐藏图片难题!!!
<img src="a.php"> 存为b.htm
<?php
$file = "https://gss0.bdstatic.com/70cFsjip0QIZ8tyhnq/img/logo-.gif";
$pic = file_get_contents($file);
header("Content-type: image/*");
echo $pic;
?>
存为a.php
然后访问b.htm
❻ php隐藏图片真实地址代码
/*图片转换为base64格式编码*/
$img='uploads/01.png';
$base64_img=base64EncodeImage($img);
echo'<imgsrc="'.$base64_img.'"/>';
functionbase64EncodeImage($image_file){
$base64_image='';
$image_info=getimagesize($image_file);
$image_data=fread(fopen($image_file,'r'),filesize($image_file));
$base64_image='data:'.$image_info['mime'].';base64,'.chunk_split(base64_encode($image_data));
return$base64_image;
}
你可以把图片内容转为base64的,这样就不会图片的地址了,但是页面体积会变大,
<img src="base64之后的值 />
❼ php3.0默认升级版的首页那个查询订单状态下的图片怎么隐藏
那图片一般都是调用住哪联盟的,不占你本地空间的。 查看原帖>>
❽ 求用PHP将远程调用的图片地址隐藏的方法
简单一点的是直接用base64_encode编码和base64_decode解码。如下:
//图片输出页 imageOutput.php
<html>
<head>
<title>OutPut Image</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="zh-CN" />
</head>
<body>
<div><img src="http://www.test.com/getImage_process.php?id=<?php echo base64_encode('http://img01.taobaocdn.com/bao/uploaded/i1/T1KNuWXdlgXXXBSUbb_095424.jpg_460x460.jpg')?>"/></div>
</body>
</html>
//图片处理页 getImage_process.php
<?php
$url = base64_decode ($_GET['id']);
echo file_get_contents($url);
//End_php
❾ php隐藏图片真实地址代码怎么用
<?php
/**
* @molar 这个脚本将会隐藏图片的真实地址
* @param name string 图片名称
* @example <img src=" http://www.xxx.com/getImg.php?name=demo.jpg" />
* 等同于 <img src=" http://www.xxx.com/images/demo.jpg" />
*/
//设置图片真实地址所在的文件夹,您所帖的代码当中少了一个分号.程序会报错
$image_path="images/";
//从URL当中得到文件名.比方说本程序的名字为getImg.php,传入参数name=demo.jpg
//即URL地址为getImg.php?name=demo.jpg,
$image_file=$image_path.$_GET['name'];
//以只读模式打开文件
$sTmpVar = fread(fopen($image_file, 'r'), filesize($image_path));
//设置文件头显示为图片.
header("Content-type: image/* ");
//输出数据流
echo $sTmpVar;
?>
❿ Php隐藏图片地址,asp隐藏图片地址怎样才能查到。
用调试工具,f12就可以看