mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
81 lines
1.9 KiB
PHP
81 lines
1.9 KiB
PHP
<?php
|
|
|
|
use think\Config;
|
|
use think\Db;
|
|
use Wechat\Loader;
|
|
use Wechat\WechatReceive;
|
|
|
|
/**
|
|
* 打印输出数据到文件
|
|
* @param mixed $data
|
|
* @param bool $replace
|
|
* @param string|null $pathname
|
|
*/
|
|
function p($data, $replace = false, $pathname = NULL) {
|
|
is_null($pathname) && $pathname = RUNTIME_PATH . date('Ymd') . '.txt';
|
|
$str = (is_string($data) ? $data : (is_array($data) || is_object($data)) ? print_r($data, TRUE) : var_export($data, TRUE)) . "\n";
|
|
$replace ? file_put_contents($pathname, $str) : file_put_contents($pathname, $str, FILE_APPEND);
|
|
}
|
|
|
|
/**
|
|
* 获取微信操作对象
|
|
* @param string $type
|
|
* @return WechatReceive
|
|
*/
|
|
function & load_wechat($type = '') {
|
|
static $wechat = array();
|
|
$index = md5(strtolower($type));
|
|
if (!isset($wechat[$index])) {
|
|
$config = Config::get('wechat');
|
|
$config['cachepath'] = CACHE_PATH . 'wechat' . DS;
|
|
$wechat[$index] = &Loader::get($type, $config);
|
|
}
|
|
return $wechat[$index];
|
|
}
|
|
|
|
/**
|
|
* 安全URL编码
|
|
* @param array $data
|
|
* @return string
|
|
*/
|
|
function encode($data) {
|
|
return str_replace(['+', '/', '='], ['-', '_', ''], base64_encode(serialize($data)));
|
|
}
|
|
|
|
/**
|
|
* 安全URL解码
|
|
* @param string $string
|
|
* @return string
|
|
*/
|
|
function decode($string) {
|
|
$data = str_replace(['-', '_'], ['+', '/'], $string);
|
|
$mod4 = strlen($data) % 4;
|
|
!!$mod4 && $data .= substr('====', $mod4);
|
|
return unserialize(base64_decode($data));
|
|
}
|
|
|
|
/**
|
|
* RBAC节点权限验证
|
|
* @param string $node
|
|
* @return bool
|
|
*/
|
|
function auth($node) {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 从配置表读取配置信息
|
|
* @param string $name
|
|
* @return string
|
|
*/
|
|
function sysconf($name) {
|
|
static $conf = [];
|
|
if (empty($conf)) {
|
|
$list = Db::name('SystemConfig')->select();
|
|
foreach ($list as $vo) {
|
|
$conf[$vo['name']] = $vo['value'];
|
|
}
|
|
}
|
|
return isset($conf[$name]) ? $conf[$name] : '';
|
|
}
|