代码拉取完成,页面将自动刷新
同步操作将从 mqycn/diy-qrcode 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?php
/**
* 文件:main.php
* 作者:mqycn
* 博客:http://www.miaoqiyuan.cn
* 源码:http://gitee.com/mqycn/diy-qrcode/
* 说明:主程序
*/
require_once 'src/diyqrcode.php';
// 选择的模板
$skin = isset($_GET['skin']) ? $_GET['skin'] : '';
// 输入的字符串
$key = isset($_GET['key']) ? $_GET['key'] : '';
$key = base64_decode($key);
$config_file = "./qrcode.{$skin}/config.php";
// 判断配置文件是存在
if (!is_file($config_file)) {
die('Skin Error!');
}
// 读取配置信息
$qrcode_config = require $config_file;
if (!is_array($qrcode_config)) {
throw new Exception("配置文件错误({$config_file})", 1);
}
if (!isset($qrcode_config['skin'])) {
$qrcode_config['skin'] = $skin;
}
// 生成二维码
$qrcode = new DiyQrcode($qrcode_config);
$qrcode->setKey($key); //需要显示的二维码
if (!isset($_GET['response_type']) || $_GET['response_type'] != 'json') {
// 调用方法一:直接输出
$qrcode->output();
} else {
// 调用方法二:保存为文件
$image = $qrcode->save('./qrimg/' . md5($key . $skin) . '.png');
header('content-type: text/javascript');
echo json_encode($image);
}
unset($qrcode);
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。