1 Star 0 Fork 1

rafikingkong/nianhui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
imageproxy.php 1.85 KB
一键复制 编辑 原始数据 按行查看 历史
rafikingkong 提交于 2019-12-30 17:06 . 第一次提交
<?php
/**
* 现场活动大屏幕系统图片代理
* PHP version 5.4+
*
* @category Image
*
* @package Image
*
* @author fy <jhfangying@qq.com>
*
* @license Copyright (c) 2017 金华迪加网络科技有限公司 版权所有
* Copyright (c) 2017 金华迪加网络科技有限公司 版权所有
* 未经许可,任何单位及个人不得做营利性使用
*
* @link link('演示地址','http://xc.taobaodpm.com');
* */
require_once dirname(__FILE__) . '/common/db.class.php';
require_once dirname(__FILE__) . '/common/File_helper.php';
$imageid=$_GET['id'];
$load->model('Attachment_model');
$fileinfo=$load->attachment_model->getById($imageid);
switch ($fileinfo['type']){
case 1:
showlocalfile($fileinfo['filepath']);
break;
case 2:
showremotefile($fileinfo['filepath']);
break;
default:
break;
}
/**
* 显示本地图片
*
* @param text $path 图片路径
*
* @return image 图片内容
*/
function showlocalfile($path)
{
$imagepath=dirname(__FILE__).$path;
$mime= get_mime_by_extension($imagepath);
$image = file_get_contents($imagepath);
header('Content-type: '.$mime);
echo $image;
}
/**
* 显示远程图片
*
* @param text $path 图片路径
*
* @return image 图片内容
*/
function showremotefile($path)
{
if (SAVEFILEMODE=='aliyunoss') {
include_once 'library/aliyunosssdk/sdk.class.php';
$oss_sdk_service = new ALIOSS();
$path_arr = explode(OBJECT_PATH, $path);
$oss_sdk_service->set_host_name(
defined('ENDPOINT')?ENDPOINT:'oss-cn-hangzhou-internal.aliyuncs.com'
);
$object_obj=$oss_sdk_service->get_object(
BUCKET_NAME, OBJECT_PATH.$path_arr[1]
);
$mime= get_mime_by_extension($path);
header('Content-type: '.$mime);
echo $object_obj->body;
return;
}
echo '';
return;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/rafikingkong/nianhui.git
git@gitee.com:rafikingkong/nianhui.git
rafikingkong
nianhui
nianhui
master

搜索帮助