1 Star 0 Fork 0

pdosgk/img_snoopy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pic.php 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
pdosgk 提交于 2019-11-03 07:48 . 数据库调整
<?php
require(__DIR__.'/vendor/autoload.php');
// Using Medoo namespace
use Medoo\Medoo;
if(file_exists(__DIR__.'/database.conf')){
$use_mysql = true;
}else{
$use_mysql = false;
}
if($use_mysql){
$conf = require(__DIR__.'/database.conf');
$database = new Medoo($conf);
$url = htmlspecialchars($_GET['url']);
$exist = $database->get('image', '*', ['url' => $url]);
}
if($use_mysql && $exist && file_exists($exist['file_path'])){
//直接输出图片, 更新计数
$database->update("image", [
'count[+]' => 1,
],
['id' => $exist['id']]
);
header('Content-type: image/jpeg');
echo file_get_contents($exist['file_path']);
exit;
}else{
include 'Snoopy.class.php';
//获取url的扩展名
$file_name = pathinfo($url)['basename'];
$snoopy = new \Lain\snoopy;
$snoopy->fetch($url);
$html_code = $snoopy->results;
//获取url的扩展名
$file_path = './cache/'.$file_name;
file_put_contents($file_path, $html_code);
if($use_mysql && empty($exist)){
//保存到数据库
$database->insert("image", [
'url' => $url,
'file_path' => $file_path,
'time' => time()
]);
}
header('Content-type: image/jpeg');
echo $html_code;
}
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/pdosgk/img_snoopy.git
git@gitee.com:pdosgk/img_snoopy.git
pdosgk
img_snoopy
img_snoopy
master

搜索帮助