| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565 | <?php// 公共助手函数use Symfony\Component\VarExporter\VarExporter;if (!function_exists('__')) {    /**     * 获取语言变量值     * @param string $name 语言变量名     * @param array  $vars 动态变量值     * @param string $lang 语言     * @return mixed     */    function __($name, $vars = [], $lang = '')    {        if (is_numeric($name) || !$name) {            return $name;        }        if (!is_array($vars)) {            $vars = func_get_args();            array_shift($vars);            $lang = '';        }        return \think\Lang::get($name, $vars, $lang);    }}if (!function_exists('format_bytes')) {    /**     * 将字节转换为可读文本     * @param int    $size      大小     * @param string $delimiter 分隔符     * @return string     */    function format_bytes($size, $delimiter = '')    {        $units = array('B', 'KB', 'MB', 'GB', 'TB', 'PB');        for ($i = 0; $size >= 1024 && $i < 6; $i++) {            $size /= 1024;        }        return round($size, 2) . $delimiter . $units[$i];    }}if (!function_exists('datetime')) {    /**     * 将时间戳转换为日期时间     * @param int    $time   时间戳     * @param string $format 日期时间格式     * @return string     */    function datetime($time, $format = 'Y-m-d H:i:s')    {        $time = is_numeric($time) ? $time : strtotime($time);        return date($format, $time);    }}if (!function_exists('human_date')) {    /**     * 获取语义化时间     * @param int $time  时间     * @param int $local 本地时间     * @return string     */    function human_date($time, $local = null)    {        return \fast\Date::human($time, $local);    }}if (!function_exists('cdnurl')) {    /**     * 获取上传资源的CDN的地址     * @param string  $url    资源相对地址     * @param boolean $domain 是否显示域名 或者直接传入域名     * @return string     */    function cdnurl($url, $domain = false)    {        $regex = "/^((?:[a-z]+:)?\/\/|data:image\/)(.*)/i";        $url = preg_match($regex, $url) ? $url : \think\Config::get('upload.cdnurl') . $url;        if ($domain && !preg_match($regex, $url)) {            $domain = is_bool($domain) ? request()->domain() : $domain;            $url = $domain . $url;        }        return $url;    }}if (!function_exists('is_really_writable')) {    /**     * 判断文件或文件夹是否可写     * @param string $file 文件或目录     * @return    bool     */    function is_really_writable($file)    {        if (DIRECTORY_SEPARATOR === '/') {            return is_writable($file);        }        if (is_dir($file)) {            $file = rtrim($file, '/') . '/' . md5(mt_rand());            if (($fp = @fopen($file, 'ab')) === false) {                return false;            }            fclose($fp);            @chmod($file, 0777);            @unlink($file);            return true;        } elseif (!is_file($file) or ($fp = @fopen($file, 'ab')) === false) {            return false;        }        fclose($fp);        return true;    }}if (!function_exists('rmdirs')) {    /**     * 删除文件夹     * @param string $dirname  目录     * @param bool   $withself 是否删除自身     * @return boolean     */    function rmdirs($dirname, $withself = true)    {        if (!is_dir($dirname)) {            return false;        }        $files = new RecursiveIteratorIterator(            new RecursiveDirectoryIterator($dirname, RecursiveDirectoryIterator::SKIP_DOTS),            RecursiveIteratorIterator::CHILD_FIRST        );        foreach ($files as $fileinfo) {            $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');            $todo($fileinfo->getRealPath());        }        if ($withself) {            @rmdir($dirname);        }        return true;    }}if (!function_exists('copydirs')) {    /**     * 复制文件夹     * @param string $source 源文件夹     * @param string $dest   目标文件夹     */    function copydirs($source, $dest)    {        if (!is_dir($dest)) {            mkdir($dest, 0755, true);        }        foreach (            $iterator = new RecursiveIteratorIterator(                new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS),                RecursiveIteratorIterator::SELF_FIRST            ) as $item        ) {            if ($item->isDir()) {                $sontDir = $dest . DS . $iterator->getSubPathName();                if (!is_dir($sontDir)) {                    mkdir($sontDir, 0755, true);                }            } else {                copy($item, $dest . DS . $iterator->getSubPathName());            }        }    }}if (!function_exists('mb_ucfirst')) {    function mb_ucfirst($string)    {        return mb_strtoupper(mb_substr($string, 0, 1)) . mb_strtolower(mb_substr($string, 1));    }}if (!function_exists('addtion')) {    /**     * 附加关联字段数据     * @param array $items  数据列表     * @param mixed $fields 渲染的来源字段     * @return array     */    function addtion($items, $fields)    {        if (!$items || !$fields) {            return $items;        }        $fieldsArr = [];        if (!is_array($fields)) {            $arr = explode(',', $fields);            foreach ($arr as $k => $v) {                $fieldsArr[$v] = ['field' => $v];            }        } else {            foreach ($fields as $k => $v) {                if (is_array($v)) {                    $v['field'] = isset($v['field']) ? $v['field'] : $k;                } else {                    $v = ['field' => $v];                }                $fieldsArr[$v['field']] = $v;            }        }        foreach ($fieldsArr as $k => &$v) {            $v = is_array($v) ? $v : ['field' => $v];            $v['display'] = isset($v['display']) ? $v['display'] : str_replace(['_ids', '_id'], ['_names', '_name'], $v['field']);            $v['primary'] = isset($v['primary']) ? $v['primary'] : '';            $v['column'] = isset($v['column']) ? $v['column'] : 'name';            $v['model'] = isset($v['model']) ? $v['model'] : '';            $v['table'] = isset($v['table']) ? $v['table'] : '';            $v['name'] = isset($v['name']) ? $v['name'] : str_replace(['_ids', '_id'], '', $v['field']);        }        unset($v);        $ids = [];        $fields = array_keys($fieldsArr);        foreach ($items as $k => $v) {            foreach ($fields as $m => $n) {                if (isset($v[$n])) {                    $ids[$n] = array_merge(isset($ids[$n]) && is_array($ids[$n]) ? $ids[$n] : [], explode(',', $v[$n]));                }            }        }        $result = [];        foreach ($fieldsArr as $k => $v) {            if ($v['model']) {                $model = new $v['model'];            } else {                $model = $v['name'] ? \think\Db::name($v['name']) : \think\Db::table($v['table']);            }            $primary = $v['primary'] ? $v['primary'] : $model->getPk();            $result[$v['field']] = $model->where($primary, 'in', $ids[$v['field']])->column("{$primary},{$v['column']}");        }        foreach ($items as $k => &$v) {            foreach ($fields as $m => $n) {                if (isset($v[$n])) {                    $curr = array_flip(explode(',', $v[$n]));                    $v[$fieldsArr[$n]['display']] = implode(',', array_intersect_key($result[$n], $curr));                }            }        }        return $items;    }}if (!function_exists('var_export_short')) {    /**     * 返回打印数组结构     * @param string $var 数组     * @return string     */    function var_export_short($var)    {        return VarExporter::export($var);    }}if (!function_exists('letter_avatar')) {    /**     * 首字母头像     * @param $text     * @return string     */    function letter_avatar($text)    {        $total = unpack('L', hash('adler32', $text, true))[1];        $hue = $total % 360;        list($r, $g, $b) = hsv2rgb($hue / 360, 0.3, 0.9);        $bg = "rgb({$r},{$g},{$b})";        $color = "#ffffff";        $first = mb_strtoupper(mb_substr($text, 0, 1));        $src = base64_encode('<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="100" width="100"><rect fill="' . $bg . '" x="0" y="0" width="100" height="100"></rect><text x="50" y="50" font-size="50" text-copy="fast" fill="' . $color . '" text-anchor="middle" text-rights="admin" alignment-baseline="central">' . $first . '</text></svg>');        $value = 'data:image/svg+xml;base64,' . $src;        return $value;    }}if (!function_exists('hsv2rgb')) {    function hsv2rgb($h, $s, $v)    {        $r = $g = $b = 0;        $i = floor($h * 6);        $f = $h * 6 - $i;        $p = $v * (1 - $s);        $q = $v * (1 - $f * $s);        $t = $v * (1 - (1 - $f) * $s);        switch ($i % 6) {            case 0:                $r = $v;                $g = $t;                $b = $p;                break;            case 1:                $r = $q;                $g = $v;                $b = $p;                break;            case 2:                $r = $p;                $g = $v;                $b = $t;                break;            case 3:                $r = $p;                $g = $q;                $b = $v;                break;            case 4:                $r = $t;                $g = $p;                $b = $v;                break;            case 5:                $r = $v;                $g = $p;                $b = $q;                break;        }        return [            floor($r * 255),            floor($g * 255),            floor($b * 255)        ];    }}if (!function_exists('check_nav_active')) {    /**     * 检测会员中心导航是否高亮     */    function check_nav_active($url, $classname = 'active')    {        $auth = \app\common\library\Auth::instance();        $requestUrl = $auth->getRequestUri();        $url = ltrim($url, '/');        return $requestUrl === str_replace(".", "/", $url) ? $classname : '';    }}if (!function_exists('check_cors_request')) {    /**     * 跨域检测     */    function check_cors_request()    {        if (isset($_SERVER['HTTP_ORIGIN']) && $_SERVER['HTTP_ORIGIN']) {            $info = parse_url($_SERVER['HTTP_ORIGIN']);            $domainArr = explode(',', config('fastadmin.cors_request_domain'));            $domainArr[] = request()->host(true);            if (in_array("*", $domainArr) || in_array($_SERVER['HTTP_ORIGIN'], $domainArr) || (isset($info['host']) && in_array($info['host'], $domainArr))) {                header("Access-Control-Allow-Origin: " . $_SERVER['HTTP_ORIGIN']);            } else {                header('HTTP/1.1 403 Forbidden');                exit;            }            header('Access-Control-Allow-Credentials: true');            header('Access-Control-Max-Age: 86400');            if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {                if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD'])) {                    header("Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS");                }                if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {                    header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");                }                exit;            }        }    }}if (!function_exists('xss_clean')) {    /**     * 清理XSS     */    function xss_clean($content, $is_image = false)    {        return \app\common\library\Security::instance()->xss_clean($content, $is_image);    }}if (!function_exists('list_domain_image')) {//结果集信息里,多个字段需要增加domain_cdnurl    function list_domain_image($list, $field)    {        if (!$list || empty($list)) {            return $list;        }        foreach ($list as $vo => $info) {            $list[$vo] = info_domain_image($info, $field);        }        return $list;    }}if (!function_exists('info_domain_image')) {//单条信息里,多个字段需要增加domain_cdnurl//支持image,images    function info_domain_image($data, $field)    {        if (!$data || empty($data)) {            return $data;        }        foreach ($data as $key => $val) {            if (in_array($key, $field)) {                $data[$key] = one_domain_image($val);            }        }        return $data;    }}if (!function_exists('one_domain_image')) {//支持单个字段,需要增加domain_cdnurl//支持image,images    function one_domain_image($one)    {        if (!$one) {            return $one;        }        if (strpos($one, ',')){            //逗号隔开的多个图片            $one = explode(',', $one);            foreach ($one as $k => $v) {                $one[$k] = localpath_to_netpath($v);            }            $one = implode(',',$one);        } else {            $one = localpath_to_netpath($one);        }        return $one;    }}if (!function_exists('localpath_to_netpath')) {//本地地址转换为网络地址    function localpath_to_netpath($path)    {        if (empty($path)) {            return '';        } elseif (strrpos($path, 'http') !== false) {            return $path;        } else {            return config('upload.cdnurl') . str_replace("\\", "/", $path);        }    }}//post接收参数中心,只接非必须function request_post_hub($field_array = [],$required = [],$noempty = []){    if(empty($field_array)){        return [];    }    $data = [];    foreach($field_array as $key => $field){        //接收        if(!request()->has($field,'post')){            continue;        }        $newone = request()->post($field);        //追加        $data[$field] = $newone;    }    //必传    if(!empty($required)){        foreach($required as $k => $mustone){            if(!isset($data[$mustone])){                return $mustone.' required';            }        }    }    //必传,且不能空    if(!empty($noempty)){        foreach($noempty as $havekey => $haveone){            if(!isset($data[$havekey]) || empty($data[$havekey])){                return $haveone.' 必填';            }        }    }    return $data;}/** * 时间转换 * @param null $time * @return false|string */function get_last_time($time = NULL) {    $text = '';    $time = $time === NULL || $time > time() ? time() : intval($time);    $t = time() - $time; //时间差 (秒)    $y = date('Y', $time)-date('Y', time());//是否跨年    switch($t){        case $t == 0:            $text = '刚刚';            break;        case $t < 60:            $text = $t . '秒前'; // 一分钟内            break;        case $t < 60 * 60:            $text = floor($t / 60) . '分钟前'; //一小时内            break;        case $t < 60 * 60 * 24:            $text = floor($t / (60 * 60)) . '小时前'; // 一天内            break;        case $t < 60 * 60 * 24 * 3:            $text = floor($time/(60*60*24)) ==1 ?'昨天 ' . date('H:i', $time) : '前天 ' . date('H:i', $time) ; //昨天和前天            break;        case $t < 60 * 60 * 24 * 30:            $text = date('m月d日 H:i', $time); //一个月内            break;        case $t < 60 * 60 * 24 * 365&&$y==0:            $text = date('m月d日', $time); //一年内            break;        default:            $text = date('Y年m月d日', $time); //一年以前            break;    }return $text;}if (!function_exists('validate')) {    /**     * 实例化验证器     * @param string    $name 验证器名称     * @param string    $layer 业务层名称     * @param bool      $appendSuffix 是否添加类名后缀     * @return \think\Validate     */    function validate($name = '', $layer = 'validate', $appendSuffix = false)    {        return \think\Loader::validate($name, $layer, $appendSuffix);    }}
 |