= 1024 && $i < 6; $i++) { $size /= 1024; } return round($size, $precision) . $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"; $cdnurl = \think\Config::get('upload.cdnurl'); $url = preg_match($regex, $url) || ($cdnurl && stripos($url, $cdnurl) === 0) ? $url : $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']] = isset($ids[$v['field']]) ? $model->where($primary, 'in', $ids[$v['field']])->column($v['column'], $primary) : []; } foreach ($items as $k => &$v) { foreach ($fields as $m => $n) { if (isset($v[$n])) { $curr = array_flip(explode(',', $v[$n])); $linedata = array_intersect_key($result[$n], $curr); $v[$fieldsArr[$n]['display']] = $fieldsArr[$n]['column'] == '*' ? $linedata : implode(',', $linedata); } } } return $items; } } if (!function_exists('var_export_short')) { /** * 使用短标签打印或返回数组结构 * @param mixed $data * @param boolean $return 是否返回数据 * @return string */ function var_export_short($data, $return = true) { return var_export($data, $return); $replaced = []; $count = 0; //判断是否是对象 if (is_resource($data) || is_object($data)) { return var_export($data, $return); } //判断是否有特殊的键名 $specialKey = false; array_walk_recursive($data, function (&$value, &$key) use (&$specialKey) { if (is_string($key) && (stripos($key, "\n") !== false || stripos($key, "array (") !== false)) { $specialKey = true; } }); if ($specialKey) { return var_export($data, $return); } array_walk_recursive($data, function (&$value, &$key) use (&$replaced, &$count, &$stringcheck) { if (is_object($value) || is_resource($value)) { $replaced[$count] = var_export($value, true); $value = "##<{$count}>##"; } else { if (is_string($value) && (stripos($value, "\n") !== false || stripos($value, "array (") !== false)) { $index = array_search($value, $replaced); if ($index === false) { $replaced[$count] = var_export($value, true); $value = "##<{$count}>##"; } else { $value = "##<{$index}>##"; } } } $count++; }); $dump = var_export($data, true); $dump = preg_replace('#(?:\A|\n)([ ]*)array \(#i', '[', $dump); // Starts $dump = preg_replace('#\n([ ]*)\),#', "\n$1],", $dump); // Ends $dump = preg_replace('#=> \[\n\s+\],\n#', "=> [],\n", $dump); // Empties $dump = preg_replace('#\)$#', "]", $dump); //End if ($replaced) { $dump = preg_replace_callback("/'##<(\d+)>##'/", function ($matches) use ($replaced) { return isset($replaced[$matches[1]]) ? $replaced[$matches[1]] : "''"; }, $dump); } if ($return === true) { return $dump; } else { echo $dump; } } } 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('' . $first . ''); $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 { $response = Response::create('跨域检测无效', 'html', 403); throw new HttpResponseException($response); } 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']}"); } $response = Response::create('', 'html'); throw new HttpResponseException($response); } } } } 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('check_ip_allowed')) { /** * 检测IP是否允许 * @param string $ip IP地址 */ function check_ip_allowed($ip = null) { $ip = is_null($ip) ? request()->ip() : $ip; $forbiddenipArr = config('site.forbiddenip'); $forbiddenipArr = !$forbiddenipArr ? [] : $forbiddenipArr; $forbiddenipArr = is_array($forbiddenipArr) ? $forbiddenipArr : array_filter(explode("\n", str_replace("\r\n", "\n", $forbiddenipArr))); if ($forbiddenipArr && \Symfony\Component\HttpFoundation\IpUtils::checkIp($ip, $forbiddenipArr)) { $response = Response::create('请求无权访问', 'html', 403); throw new HttpResponseException($response); } } } if (!function_exists('build_suffix_image')) { /** * 生成文件后缀图片 * @param string $suffix 后缀 * @param null $background * @return string */ function build_suffix_image($suffix, $background = null) { $suffix = mb_substr(strtoupper($suffix), 0, 4); $total = unpack('L', hash('adler32', $suffix, true))[1]; $hue = $total % 360; list($r, $g, $b) = hsv2rgb($hue / 360, 0.3, 0.9); $background = $background ? $background : "rgb({$r},{$g},{$b})"; $icon = << {$suffix} EOT; return $icon; } } //结果集信息里,多个字段需要增加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; } //单条信息里,多个字段需要增加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; } //支持单个字段,需要增加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; } //本地地址转换为网络地址 function localpath_to_netpath($path) { if (empty($path)) { return ''; } elseif (strrpos($path, 'http') !== false) { return $path; } else { return config('upload.cdnurl') . str_replace("\\", "/", $path); } } function p($arr) { header('content-type:text/html;charset=utf-8'); echo '
';
    print_r($arr);
    echo '
'; } /** * 手机格式验证 * @param string $mobile 验证的手机号码 * @return boolean */ function is_mobile($mobile) { if (!empty($mobile)) { return preg_match('/^1[3|4|5|6|7|8|9][0-9]\d{8}$/', $mobile); } return false; } //处理时间戳: *时*分*秒 function process_time($time) { $result = ''; $hour = ''; $minute = '00'; if ($time > 3600) { $hour = (string)floor($time / 3600); $time = $time - $hour * 3600; } if ($time > 60) { $minute = (string)floor($time / 60); $time = $time - $minute * 60; if ($minute < 10) { $minute = '0' . $minute; } } if ($time < 10) { $second = (string)('0' . $time); } else { $second = (string)$time; } if ($hour) { $result = $hour . ':'; } $result = $result . $minute . ':' . $second; return $result; } /** * [getMillisecond 获取毫秒级时间戳] * @return [type] [description] */ function getMillisecond() { list($t1, $t2) = explode(' ', microtime()); return (float)sprintf('%.0f', (floatval($t1) + floatval($t2)) * 1000); } /** * CURL请求 * @param $url 请求url地址 * @param $method 请求方法 get post * @param null $postfields post数据数组 * @param array $headers 请求header信息 * @param bool|false $debug 调试开启 默认false * @return mixed */ function httpRequest($url = '', $method = '', $postfields = null, $headers = array(), $debug = false) { $method = strtoupper($method); $ci = curl_init(); /* Curl settings */ curl_setopt($ci, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); curl_setopt($ci, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0"); curl_setopt($ci, CURLOPT_CONNECTTIMEOUT, 60); /* 在发起连接前等待的时间,如果设置为0,则无限等待 */ curl_setopt($ci, CURLOPT_TIMEOUT, 7); /* 设置cURL允许执行的最长秒数 */ curl_setopt($ci, CURLOPT_RETURNTRANSFER, true); switch ($method) { case "POST": curl_setopt($ci, CURLOPT_POST, true); if (!empty($postfields)) { $tmpdatastr = is_array($postfields) ? http_build_query($postfields) : $postfields; curl_setopt($ci, CURLOPT_POSTFIELDS, $tmpdatastr); } break; default: curl_setopt($ci, CURLOPT_CUSTOMREQUEST, $method); /* //设置请求方式 */ break; } $ssl = preg_match('/^https:\/\//i',$url) ? TRUE : FALSE; curl_setopt($ci, CURLOPT_URL, $url); if($ssl){ curl_setopt($ci, CURLOPT_SSL_VERIFYPEER, FALSE); // https请求 不验证证书和hosts curl_setopt($ci, CURLOPT_SSL_VERIFYHOST, FALSE); // 不从证书中检查SSL加密算法是否存在 } //curl_setopt($ci, CURLOPT_HEADER, true); /*启用时会将头文件的信息作为数据流输出*/ //curl_setopt($ci, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ci, CURLOPT_MAXREDIRS, 2);/*指定最多的HTTP重定向的数量,这个选项是和CURLOPT_FOLLOWLOCATION一起使用的*/ curl_setopt($ci, CURLOPT_HTTPHEADER, $headers); curl_setopt($ci, CURLINFO_HEADER_OUT, true); /*curl_setopt($ci, CURLOPT_COOKIE, $Cookiestr); * *COOKIE带过去** */ $response = curl_exec($ci); $requestinfo = curl_getinfo($ci); $http_code = curl_getinfo($ci, CURLINFO_HTTP_CODE); if ($debug) { echo "=====post data======\r\n"; var_dump($postfields); echo "=====info===== \r\n"; print_r($requestinfo); echo "=====response=====\r\n"; print_r($response); } curl_close($ci); return $response; //return array($http_code, $response,$requestinfo); } /** * 资金记录 * param int $balance 变动的金额数量,减少时传:-$balance,增加时直接传:$balance * param string $desc 描述 * param int $user_id 登录用户id * $type 类型:1=充值,2=支付,3=后台 * $relation_id 充值ID/订单ID/会员ID * return int */ function create_log($balance = 0, $desc = '', $user_id = 0, $type = 0, $relation_id = 0) { $map['id'] = $user_id; $user = Db::name('user'); $user_info = $user->where($map)->field('id, money')->find(); if ($user_info['money'] < 0) { return -3; } // 查询log日志 $user_account = Db::name('user_money_log'); $data = array(); $log = array(); $silver_logs = $user_account->where(['user_id' => $user_id])->order('id desc')->limit(10)->select(); $all_count = count($silver_logs); //日志记录数量 if ($all_count < 1) { if ($user_info['money'] > 0) { return -7; } } else { $all_change_silver = array(); if ($all_count == 1) { // 只有一条日志 变动金额=余额 if ($silver_logs[0]['after'] != $silver_logs[0]['money']) { // add_error_user($silver_logs[0]['user_id'], 0); return -8; } } $log_count = $all_count - 1; $last_user_silver = ''; foreach ($silver_logs as $key => $value) { if ($key == $log_count) { $last_user_silver = $value['after']; break; } $all_change_silver[] = $value['money']; } //变动金额+最初余额=最新余额 // $new_silver = $last_user_silver + array_sum($all_change_silver); // 最新余额+变动总金额 // $silver_difference = abs($new_silver - $silver_logs[0]['user_diamond']); $new_silver = $last_user_silver + array_sum($all_change_silver); // 最新余额+变动总金额 $silver_difference = abs(number_format($new_silver, 2, '.', '') - number_format($silver_logs[0]['after'], 2, '.', '')); // p($silver_difference);die; if ($silver_difference > 1) { // add_error_user($silver_logs[0]['user_id'], 0); return -9; } } $log['user_id'] = $user_id; $log['type'] = $type; $log['money'] = $balance; $log['before'] = $user_info['money']; $log['after'] = $user_info['money'] + $balance; $log['memo'] = $desc; $log['relation_id'] = $relation_id; $log['createtime'] = time(); $data['money'] = $log['after']; if ($data['money'] < 0) { return -12; } if ($balance != 0) { $change_result = $user->where($map)->where(['money' => $user_info['money']])->setField($data); // 更改用户余额 if ($change_result !== false) { $rows = $user_account->insertGetId($log); if ($rows > 0) { return 1; } else { return -10; } } else { return -11; } } return 1; } /** * 成长值记录 * param int $balance 变动的数量,减少时传:-$balance,增加时直接传:$balance * param string $desc 描述 * param int $user_id 登录用户id * $type 类型:1=登录,2=充值,3=微信支付活动,4=活动取消扣除 * $relation_id 充值记录ID/订单ID * return int */ function create_growth_log($balance = 0, $desc = '', $user_id = 0, $type = 0, $relation_id = 0) { $map['id'] = $user_id; $user = Db::name('user'); $user_info = $user->where($map)->field('id, growthvalue')->find(); if ($user_info['growthvalue'] < 0) { return -3; } // 查询log日志 $user_account = Db::name('user_growth_log'); $data = array(); $log = array(); $silver_logs = $user_account->where(['user_id' => $user_id])->order('id desc')->limit(10)->select(); $all_count = count($silver_logs); //日志记录数量 if ($all_count < 1) { if ($user_info['growthvalue'] > 0) { return -7; } } else { $all_change_silver = array(); if ($all_count == 1) { // 只有一条日志 变动金额=余额 if ($silver_logs[0]['after'] != $silver_logs[0]['growth']) { // add_error_user($silver_logs[0]['user_id'], 0); return -8; } } $log_count = $all_count - 1; $last_user_silver = ''; foreach ($silver_logs as $key => $value) { if ($key == $log_count) { $last_user_silver = $value['after']; break; } $all_change_silver[] = $value['growth']; } //变动金额+最初余额=最新余额 // $new_silver = $last_user_silver + array_sum($all_change_silver); // 最新余额+变动总金额 // $silver_difference = abs($new_silver - $silver_logs[0]['user_diamond']); $new_silver = $last_user_silver + array_sum($all_change_silver); // 最新余额+变动总金额 $silver_difference = abs(number_format($new_silver, 2, '.', '') - number_format($silver_logs[0]['after'], 2, '.', '')); // p($silver_difference);die; if ($silver_difference > 1) { // add_error_user($silver_logs[0]['user_id'], 0); return -9; } } $log['user_id'] = $user_id; $log['type'] = $type; $log['growth'] = $balance; $log['before'] = $user_info['growthvalue']; $log['after'] = $user_info['growthvalue'] + $balance; $log['memo'] = $desc; $log['relation_id'] = $relation_id; $log['createtime'] = time(); $data['growthvalue'] = $log['after']; if ($data['growthvalue'] < 0) { return -12; } if ($balance != 0) { $change_result = $user->where($map)->where(['growthvalue' => $user_info['growthvalue']])->setField($data); // 更改用户余额 if ($change_result !== false) { $rows = $user_account->insertGetId($log); if ($rows > 0) { return 1; } else { return -10; } } else { return -11; } } return 1; } //生日转年龄 function birthtime_to_age($birthtime){ // $birthtime = strtotime('1990-11-06'); if(!$birthtime){ return 0; } list($y1,$m1,$d1) = explode("-",date("Y-m-d",$birthtime)); list($y2,$m2,$d2) = explode("-",date("Y-m-d",time())); $age = $y2 - $y1; if((int)($m2.$d2) < (int)($m1.$d1)) {$age -= 1;} if($age < 0){ $age = 0; } return $age; }