📄 view.php
字号:
<?php
require_once 'config.php';
$FILE=$_GET[F];
if (file_exists("$FILE.txt"))
{
$_file=fopen("$FILE.txt","r+");
$contents=fread($_file,filesize("$FILE.txt"));
settype($contents, "integer");
fclose($_file);
$_file2=fopen("$FILE.txt","r+");
$hits=fwrite($_file2,$contents+1);
fclose($_file2);
}
if (!file_exists("$FILE.txt"))
{
$_file=fopen("$FILE.txt","w+");
$contents=fread($_file,filesize("$FILE.txt"));
settype($contents, "integer");
fclose($_file);
$_file2=fopen("$FILE.txt","w+");
$hits=fwrite($_file2,$contents+1);
fclose($_file2);
chmod("$FILE.txt",0777);
}
?>
<html>
<head>
<title><? echo "$names";?>--欣赏<?php echo("$FILE");?>--Powered by inso (www.shi8.com)</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language='JavaScript' src='common.js'></script>
<link rel='stylesheet' type='text/css' href='styles.css'>
</head>
<body ondblclick="self.close()" oncontextmenu=window.event.returnValue=false onselectstart="return false">
<center>
<br>
<img src=img/down.gif><a href=save.php?file=<?php echo("$FILE");?> title="保存到自己电脑上">保存图片</a> | <img src=img/baidu.jpg><a href=http://image.baidu.com/i?tn=baiduimage&ct=201326592&lm=-1&z=0&rn=&word=<?php echo("$FILE");?>&_sv=6&_si.x=11&_si.y=3 target="_new">用百度搜索同名图片<a/> | <img src=img/google.jpg><a href=http://images.google.com/images?hl=zh-CN&lr=&ie=gb2312&oe=gb2312&q=<?php echo("$FILE");?> target="_new">用Google搜索同名图片</a><br><br>
<a href=save.php?file=<?php echo("$FILE");?> ><img src="daolian.php?site=1&file=watermark.php?i=<?php echo("$FILE");?>&o=<?php echo("$copy");?>" alt="<li><font color=red><b>双击图片或空白处</b></font><font color=green>可以关闭窗口</font><li><font color=red><b>单击图片</b></font><font color=green>可以下载原图(不含水印)</font><li>本图已经被浏览<b><?php echo($contents+1);?></b>次了" border="0" style=filter:progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=135,strength=5)></a><br />
<!--
<script language=javascript>window.location='<?php echo("$FILE");?>';</script>
-->
</b>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -