123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134 |
- <?php
- /**
- * 易优CMS
- * ============================================================================
- * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
- * 网站地址: http://www.eyoucms.com
- * ----------------------------------------------------------------------------
- * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
- * ============================================================================
- * Author: 小虎哥 <1105415366@qq.com>
- * Date: 2018-4-3
- */
-
- //------------------------
- // EyouCms 助手函数
- //-------------------------
-
- use think\Url;
- use think\Config;
-
- if (!function_exists('memcache'))
- {
- /**
- * 缓存管理
- * @param mixed $name 缓存标识,具体查看./app/extra/admin_memcache.php
- * @param mixed $value 缓存值
- * @return mixed
- */
- function memcache($name = null, $value = null, $options = false)
- {
- //暂时改用memcached
- return memcached($name, $value, $options);
- exit;
-
-
- //暂这么连接 后期更改
- static $memcache;
- // $module = strtolower(MODULE_NAME);
- $data = Config::get('memcache_key');
-
- // 关闭memcached时,自动改用cache方式
- if (Config::get('memcache.switch') == 0) {
- if (empty($name) || empty($data[$name])) {
- return false;
- }
- $expire = $data[$name]['expire'];
- return cache($name, $value, $expire);
- }
-
- if ($options === false) {
- $options = Config::get('memcache');
- }
-
- $memcache = new \think\cache\driver\Memcache($options);
- if (is_null($name) && is_null($value)) {
- return $memcache;
- }
-
- if (empty($name) || empty($data[$name])) {
- return false;
- }
-
- $key = md5(strtolower($name));
- $expire = $data[$name]['expire'];
- $tag = $data[$name]['tag'];
-
- if (is_null($value)) {
- // 获取缓存
- return true === $memcache->has($key) ? $memcache->get($key) : false;
- } elseif ('' === $value) {
- // 删除缓存
- return $memcache->rm($key);
- } else {
- // 缓存数据
- $expire = is_numeric($expire) ? $expire : null; //默认快捷缓存设置过期时间
-
- if (is_null($tag) || empty($tag)) {
- return $memcache->set($key, $value, $expire);
- } else {
- // $memcache->tag = $tag;
- return $memcache->set($key, $value, $expire);
- }
- }
- }
- }
-
- if (!function_exists('memcached'))
- {
- /**
- * 缓存管理
- * @param mixed $name 缓存标识,具体查看./app/extra/admin_memcache.php
- * @param mixed $value 缓存值
- * @return mixed
- */
- function memcached($name = null, $value = null, $options = false)
- {
- //暂这么连接 后期更改
- static $memcached;
- // $module = strtolower(MODULE_NAME);
- $data = Config::get('memcache_key');
-
- // 关闭memcached时,自动改用cache方式
- if (Config::get('memcache.switch') == 0) {
- if (empty($name) || empty($data[$name])) {
- return false;
- }
- $expire = $data[$name]['expire'];
- return cache($name, $value, $expire);
- }
-
- if ($options === false) {
- $options = Config::get('memcache');
- }
-
- $memcached = new \think\cache\driver\Memcached($options);
- if (is_null($name) && is_null($value)) {
- return $memcached;
- }
-
- if (empty($name) || empty($data[$name])) {
- return false;
- }
-
- $key = md5(strtolower($name));
- $expire = $data[$name]['expire'];
- $tag = $data[$name]['tag'];
-
- if (is_null($value)) {
- // 获取缓存
- return true === $memcached->has($key) ? $memcached->get($key) : false;
- } elseif ('' === $value) {
- // 删除缓存
- return $memcached->rm($key);
- } else {
- // 缓存数据
- $expire = is_numeric($expire) ? $expire : null; //默认快捷缓存设置过期时间
-
- if (is_null($tag) || empty($tag)) {
- return $memcached->set($key, $value, $expire);
- } else {
- // $memcached->tag = $tag;
- return $memcached->set($key, $value, $expire);
- }
- }
- }
- }
-
- if (!function_exists('extra_cache')) {
- /**
- * 获取和设置配置参数 支持批量定义
- * @param string|array $name 配置变量
- * @param mixed $value 配置值
- * @param mixed $default 默认值
- * @return mixed
- */
- function extra_cache($name, $value = '', $expire = 0) {
- $request = think\Request::instance();
- $module = strtolower($request->module());
- $keys_list = config('extra_cache_key');
-
- $key = md5(strtolower($name));
- if (!isset($keys_list[$name])) {
- return false;
- }
- $options = $keys_list[$name]['options'];
- $cache_conf = config('cache');
- if ($expire > 0) {
- $cache_conf['expire'] = $expire;
- } else {
- if (!empty($options['expire'])) {
- $cache_conf['expire'] = $options['expire'];
- }
- }
- if (!empty($options['prefix'])) {
- $cache_conf['prefix'] = $options['prefix'];
- }
-
- $tag = $keys_list[$name]['tag'];
- if (empty($tag)) {
- $tag = $module;
- }
-
- return cache($key, $value, $cache_conf, $tag);
- }
- }
-
- if (!function_exists('html_cache')) {
- /**
- * 获取和设置配置参数 支持批量定义
- * @param string|array $name 配置变量
- * @param mixed $value 配置值
- * @param mixed $default 默认值
- * @return mixed
- */
- function html_cache($name, $value = '', $options = array()) {
-
- $new_conf = $options;
-
- if (!isset($options['path'])) {
- if (!stristr(request()->baseFile(), 'index.php')) {
- $lang = get_admin_lang();
- } else {
- $lang = get_home_lang();
- }
- if (isMobile()) {
- $path = HTML_PATH."other/{$lang}_mobile_cache/";
- } else {
- $path = HTML_PATH."other/{$lang}_pc_cache/";
- }
- $new_conf['path'] = $path;
- }
-
- if (is_numeric($options)) {
- $new_conf['expire'] = $options;
- }
-
- $cache_conf = config('cache');
- $cache_conf = array_merge($cache_conf, $new_conf);
-
- $tag = $cache_conf['prefix'];
-
- if (!is_array($name)) {
- $name = strtolower($name);
- } else {
- $name = array_merge($cache_conf, $name);
- return cache($name);
- }
-
- return cache($name, $value, $cache_conf, $tag);
- }
- }
-
- if (!function_exists('typeurl')) {
- /**
- * 栏目Url生成
- * @param string $url 路由地址
- * @param string|array $param 变量
- * @param bool|string $suffix 生成的URL后缀
- * @param bool|string $domain 域名
- * @param string $seo_pseudo URL模式
- * @param string $seo_pseudo_format URL格式
- * @return string
- */
- function typeurl($url = '', $param = '', $suffix = true, $domain = false, $seo_pseudo = null, $seo_pseudo_format = null)
- {
- $domain_old = $domain;
- if (!$domain){
- static $absolute_path_open = null;
- null === $absolute_path_open && $absolute_path_open = tpCache('web.absolute_path_open'); //是否开启绝对链接
- if ($absolute_path_open){
- $domain = true;
- }
- }
-
- $eyouUrl = '';
- static $uiset = null;
- null === $uiset && $uiset = input('param.uiset/s', 'off');
- $uiset = trim($uiset, '/');
-
- static $static_seo_pseudo = null;
- null === $static_seo_pseudo && $static_seo_pseudo = tpCache('seo.seo_pseudo');
- $seo_pseudo = !empty($seo_pseudo) ? $seo_pseudo : $static_seo_pseudo;
-
- //开启会员,查看权限限制,静态强制转动态
- static $web_users_switch = null;
- null === $web_users_switch && $web_users_switch = tpCache('web.web_users_switch');
- $param['page_limit'] = !empty($param['page_limit']) ? explode(',', $param['page_limit']) : [];
- if (!empty($web_users_switch) && !empty($param['typearcrank']) && $param['typearcrank'] > 0 && in_array(1,$param['page_limit']) && $seo_pseudo == 2){
- $seo_pseudo = 1;
- }
-
- if (empty($seo_pseudo_format)) {
- if (1 == $seo_pseudo) {
- $seo_pseudo_format = config('ey_config.seo_dynamic_format');
- }
- }
-
- // 多站点 - 静态模式下默认以动态URL访问
- static $city_switch_on = null;
- null === $city_switch_on && $city_switch_on = config('city_switch_on');
- if (true === $city_switch_on) {
- $domain = $domain_old;
- if ((1 == $seo_pseudo && 2 == $seo_pseudo_format) || (2 == $seo_pseudo)) {
- $seo_pseudo = 1;
- $seo_pseudo_format = 1;
- }
- }
-
- if ('on' != $uiset && 1 == $seo_pseudo && 2 == $seo_pseudo_format) {
- if (is_array($param)) {
- $vars = array(
- 'tid' => $param['id'],
- );
- $vars = http_build_query($vars);
- } else {
- $vars = $param;
- }
- $eyouUrl = url($url, array(), $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
- $urlParam = parse_url($eyouUrl);
- $query_str = isset($urlParam['query']) ? $urlParam['query'] : '';
- if (empty($query_str)) {
- $eyouUrl .= '?';
- } else {
- $eyouUrl .= '&';
- }
- $eyouUrl .= $vars;
- } elseif ('on' != $uiset && 2 == $seo_pseudo) { // 生成静态页面代码
- static $is_mobile = null;
- null === $is_mobile && $is_mobile = isMobile();
- static $response_type = null;
- null === $response_type && $response_type = config('ey_config.response_type', $response_type);
- if (!empty($response_type) && $is_mobile) { // 手机端访问非静态页面
- if (is_array($param)) {
- $vars = array(
- 'tid' => $param['id'],
- );
- $vars = http_build_query($vars);
- } else {
- $vars = $param;
- }
- static $home_lang = null;
- null == $home_lang && $home_lang = get_home_lang(); // 前台语言 by 小虎哥
- static $main_lang = null;
- null == $main_lang && $main_lang = get_main_lang(); // 前台主体语言 by 小虎哥
- if ($home_lang != $main_lang) {
- $vars .= "&lang=".get_home_lang();
- }
- $eyouUrl = url('home/Lists/index', $vars, true, false, 1);
- }else{
- // PC端访问是静态页面
- static $seo_html_listname = null;
- null === $seo_html_listname && $seo_html_listname = tpCache('seo.seo_html_listname');
- static $seo_html_arcdir = null;
- null === $seo_html_arcdir && $seo_html_arcdir = tpCache('seo.seo_html_arcdir');
-
- if ($seo_html_listname == 1) {//存放顶级目录
- $dirpath = explode('/',$param['dirpath']);
- if($param['parent_id'] == 0){
- $url = $seo_html_arcdir.'/'.$dirpath[1].'/';
- }else{
- $url = $seo_html_arcdir.'/'.$dirpath[1]."/lists_".$param['id'].'.html';
- }
- } else if ($seo_html_listname == 3) { // 存放子级目录
- $dirpath = explode('/',$param['dirpath']);
- $url = $seo_html_arcdir.'/'.end($dirpath).'/';
- } else if ($seo_html_listname == 4) { // 自定义存放目录
- $url = $seo_html_arcdir;
- $diy_dirpath = !empty($param['diy_dirpath']) ? $param['diy_dirpath'] : '';
- if (!empty($param['rulelist'])) {
- $rulelist = ltrim($param['rulelist'], '/');
- $rulelist = str_replace("{tid}", $param['id'], $rulelist);
- $rulelist = str_replace("{page}", '', $rulelist);
- $rulelist = preg_replace('/{(栏目目录|typedir)}(\/?)/i', $diy_dirpath.'/', $rulelist);
- $rulelist = '/'.ltrim($rulelist, '/');
- if (in_array($param['current_channel'], [6,8]) && !preg_match('/^{(栏目目录|typedir)}\/(list_{tid}_{page}|index)\.html$/i', $param['rulelist'])) {
- $rulelist = preg_replace('/\/([\/]*)/i', '/', $rulelist);
- } else {
- $rulelist = preg_replace('/\/([\/]*)([^\/]*)$/i', '/', $rulelist);
- }
- $url .= $rulelist;
- }else{
- $url .= $diy_dirpath."/";
- }
- } else {
- $url = $seo_html_arcdir.$param['dirpath'].'/';
- }
-
- $eyouUrl = ROOT_DIR.$url;
- if (false !== $domain) {
- static $re_domain = null;
- null === $re_domain && $re_domain = request()->domain();
- if (true === $domain) {
- $eyouUrl = $re_domain.$eyouUrl;
- } else {
- $eyouUrl = rtrim($domain, '/').$eyouUrl;
- }
- }
- }
-
- } elseif ('on' != $uiset && 3 == $seo_pseudo) {
- if (is_array($param)) {
- $vars = array(
- 'tid' => $param['dirname'],
- );
- } else {
- $vars = $param;
- }
- /*伪静态格式*/
- $seo_rewrite_format = config('ey_config.seo_rewrite_format');
- if (1 == intval($seo_rewrite_format)) {
- $eyouUrl = url('home/Lists/index', $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
- if (!strstr($eyouUrl, '.htm')){
- $eyouUrl .= '/';
- }
- } else if (3 == intval($seo_rewrite_format)) {
- $eyouUrl = url('home/Lists/index', $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
- if (!strstr($eyouUrl, '.htm')){
- $eyouUrl .= '/';
- }
- } else if (4 == intval($seo_rewrite_format)) {
- $dirname = str_replace($param['dirname'],"",$param['dirpath']);
- if (!empty($dirname)){
- $dirname = str_ireplace("/", "-", $dirname);
- if(!empty($dirname)){
- $dirname = trim($dirname,"-");
- }
- }
- if (!empty($dirname)){
- $eyouUrl = url('home/Lists/index?'.$dirname, $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
- }else{
- $eyouUrl = url('home/Lists/index', $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
- }
- $eyouUrl = urldecode($eyouUrl);
- if (!strstr($eyouUrl, '.htm')){
- $eyouUrl .= '/';
- }
- } else {
- $eyouUrl = url($url, $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format); // 兼容v1.1.6之前被搜索引擎收录的URL
- }
- /*--end*/
- } else {
- if (is_array($param)) {
- $vars = array(
- 'tid' => $param['id'],
- );
- } else {
- $vars = $param;
- }
- $eyouUrl = url('home/Lists/index', $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
- }
-
- return $eyouUrl;
- }
- }
-
- if (!function_exists('arcurl')) {
- /**
- * 文档Url生成
- * @param string $url 路由地址
- * @param string|array $param 变量
- * @param bool|string $suffix 生成的URL后缀
- * @param bool|string $domain 域名
- * @param string $seo_pseudo URL模式
- * @param string $seo_pseudo_format URL格式
- * @return string
- */
- function arcurl($url = '', $param = '', $suffix = true, $domain = false, $seo_pseudo = '', $seo_pseudo_format = null)
- {
- $root_dir = ROOT_DIR;
- $domain_old = $domain;
- if (!$domain){
- static $absolute_path_open = null;
- null === $absolute_path_open && $absolute_path_open = tpCache('web.absolute_path_open'); //是否开启绝对链接
- if ($absolute_path_open){
- $domain = true;
- }
- }
-
- $eyouUrl = '';
- static $uiset = null;
- null === $uiset && $uiset = input('param.uiset/s', 'off');
- $uiset = trim($uiset, '/');
-
- static $static_seo_pseudo = null;
- null === $static_seo_pseudo && $static_seo_pseudo = tpCache('seo.seo_pseudo');
- $seo_pseudo = !empty($seo_pseudo) ? $seo_pseudo : $static_seo_pseudo;
-
- //开启会员,查看权限限制,静态强制转动态
- static $web_users_switch = null;
- null === $web_users_switch && $web_users_switch = tpCache('web.web_users_switch');
- if (!empty($web_users_switch) && ((!empty($param['typearcrank']) && $param['typearcrank'] > 0) || (!empty($param['arcrank']) && $param['arcrank'] > 0)) && $seo_pseudo == 2){
- $seo_pseudo = 1;
- }
-
- if (empty($seo_pseudo_format)) {
- if (1 == $seo_pseudo) {
- $seo_pseudo_format = config('ey_config.seo_dynamic_format');
- }
- }
- // 多站点 - 静态模式下默认以动态URL访问
- static $web_basehost = null;
- null === $web_basehost && $web_basehost = tpCache('web.web_basehost');
- static $city_switch_on = null;
- null === $city_switch_on && $city_switch_on = config('city_switch_on');
- if (true === $city_switch_on) {
- if ((1 == $seo_pseudo && 2 == $seo_pseudo_format) || (2 == $seo_pseudo)) {
- $seo_pseudo = 1;
- $seo_pseudo_format = 1;
- }
- }
-
- if ('on' != $uiset && 1 == $seo_pseudo && 2 == $seo_pseudo_format) {
- if (is_array($param)) {
- $vars = array(
- 'aid' => $param['aid'],
- );
- } else {
- parse_str($param, $vars);
- }
- /*城市站点的域名路径*/
- if (true === $city_switch_on) {
- static $subDomain = null;
- if (null === $subDomain) {
- $subDomain = request()->subDomain();
- }
- static $rootDomain = null;
- if (null === $rootDomain) {
- $rootDomain = request()->rootDomain();
- }
- static $citysiteList = null;
- if (null === $citysiteList) {
- $citysiteList = get_citysite_list();
- }
- $domain = $domain_old;
- if (!empty($param['area_id']) && !empty($citysiteList[$param['area_id']])) {
- $vars['site'] = $citysiteList[$param['area_id']]['domain'];
- if (!empty($citysiteList[$param['area_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($param['city_id']) && !empty($citysiteList[$param['city_id']])) {
- $vars['site'] = $citysiteList[$param['city_id']]['domain'];
- if (!empty($citysiteList[$param['city_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($param['province_id']) && !empty($citysiteList[$param['province_id']])) {
- $vars['site'] = $citysiteList[$param['province_id']]['domain'];
- if (!empty($citysiteList[$param['province_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($subDomain) && 'www' != $subDomain && $subDomain == get_home_site()) {
- $vars['site'] = true;
- $domain = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', $web_basehost);
- } else {
- $vars['site'] = true;
- }
- }
- /*--end*/
- $eyouUrl = url($url, array(), $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
- $urlParam = parse_url($eyouUrl);
- $query_str = isset($urlParam['query']) ? $urlParam['query'] : '';
- if (empty($query_str)) {
- $eyouUrl .= '?';
- } else {
- $eyouUrl .= '&';
- }
- $vars = http_build_query($vars);
- $eyouUrl .= $vars;
- } elseif ($seo_pseudo == 2 && $uiset != 'on') { // 生成静态页面代码
- static $is_mobile = null;
- null === $is_mobile && $is_mobile = isMobile();
- static $response_type = null;
- null === $response_type && $response_type = config('ey_config.response_type', $response_type);
- if (!empty($response_type) && $is_mobile) { // 手机端访问非静态页面
- if (is_array($param)) {
- $vars = array(
- 'aid' => $param['aid'],
- );
- } else {
- parse_str($param, $vars);
- }
- /*城市站点的域名路径*/
- if (true === $city_switch_on) {
- static $subDomain = null;
- if (null === $subDomain) {
- $subDomain = request()->subDomain();
- }
- static $rootDomain = null;
- if (null === $rootDomain) {
- $rootDomain = request()->rootDomain();
- }
- static $citysiteList = null;
- if (null === $citysiteList) {
- $citysiteList = get_citysite_list();
- }
- $domain = $domain_old;
- if (!empty($param['area_id']) && !empty($citysiteList[$param['area_id']])) {
- $vars['site'] = $citysiteList[$param['area_id']]['domain'];
- if (!empty($citysiteList[$param['area_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($param['city_id']) && !empty($citysiteList[$param['city_id']])) {
- $vars['site'] = $citysiteList[$param['city_id']]['domain'];
- if (!empty($citysiteList[$param['city_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($param['province_id']) && !empty($citysiteList[$param['province_id']])) {
- $vars['site'] = $citysiteList[$param['province_id']]['domain'];
- if (!empty($citysiteList[$param['province_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($subDomain) && 'www' != $subDomain && $subDomain == get_home_site()) {
- $vars['site'] = true;
- $domain = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', $web_basehost);
- } else {
- $vars['site'] = true;
- }
- }
- /*--end*/
- // $vars = http_build_query($vars);
- static $home_lang = null;
- null == $home_lang && $home_lang = get_home_lang(); // 前台语言 by 小虎哥
- static $main_lang = null;
- null == $main_lang && $main_lang = get_main_lang(); // 前台主体语言 by 小虎哥
- if ($home_lang != $main_lang) {
- $vars['lang'] = get_home_lang();
- // $vars .= "&lang=".get_home_lang();
- }
- $eyouUrl = url('home/View/index', $vars, true, false, 1);
-
- /*城市站点的域名路径*/
- if (true === $city_switch_on) { // 全国站显示城市文档时的URL处理
- if (true !== $vars['site'] && !empty($vars['site']) && $vars['site'] != $subDomain) {
- $eyouUrl .= "&site={$vars['site']}";
- }
- }
- /*--end*/
- }
- else
- { // PC端访问是静态页面
- if (!empty($param['htmlfilename'])){
- $aid = $param['htmlfilename'];
- }else{
- $aid = $param['aid'];
- }
- static $seo_html_pagename = null;
- null === $seo_html_pagename && $seo_html_pagename = tpCache('seo.seo_html_pagename');
- static $seo_html_arcdir = null;
- null === $seo_html_arcdir && $seo_html_arcdir = tpCache('seo.seo_html_arcdir');
- if($seo_html_pagename == 1){//存放顶级目录
- $dirpath = explode('/',$param['dirpath']);
- $url = $seo_html_arcdir.'/'.$dirpath[1].'/'.$aid.'.html';
- } else if ($seo_html_pagename == 3) { // 存放子级目录
- $dirpath = explode('/',$param['dirpath']);
- $url = $seo_html_arcdir.'/'.end($dirpath).'/'.$aid.'.html';
- } else if ($seo_html_pagename == 4) { // 自定义存放目录
- $url = $seo_html_arcdir;
- $diy_dirpath = !empty($param['diy_dirpath']) ? $param['diy_dirpath'] : '';
- if (!empty($param['ruleview'])) {
- $y = $m = $d = 1;
- if (!empty($param['add_time'])){
- $y = date('Y', $param['add_time']);
- $m = date('m', $param['add_time']);
- $d = date('d', $param['add_time']);
- }
- $ruleview = ltrim($param['ruleview'], '/');
- $ruleview = str_ireplace("{aid}", $aid, $ruleview);
- $ruleview = str_ireplace("{Y}", $y, $ruleview);
- $ruleview = str_ireplace("{M}", $m, $ruleview);
- $ruleview = str_ireplace("{D}", $d, $ruleview);
- $ruleview = preg_replace('/{(栏目目录|typedir)}(\/?)/i', $diy_dirpath.'/', $ruleview);
- $ruleview = '/'.ltrim($ruleview, '/');
- $url .= $ruleview;
- }else{
- $url .= $diy_dirpath."/" . $aid.'.html';
- }
- }else{
- $url = $seo_html_arcdir.$param['dirpath'].'/'.$aid.'.html';
- }
-
- $eyouUrl = $root_dir.$url;
- if (false !== $domain) {
- static $re_domain = null;
- null === $re_domain && $re_domain = request()->domain();
- if (true === $domain) {
- $eyouUrl = $re_domain.$eyouUrl;
- } else {
- $eyouUrl = rtrim($domain, '/').$eyouUrl;
- }
- }
- }
-
- } elseif ($seo_pseudo == 3 && $uiset != 'on') {
- /*伪静态格式*/
- $seo_rewrite_format = config('ey_config.seo_rewrite_format');
- if (1 == intval($seo_rewrite_format)) {
- $url = 'home/View/index';
- /*URL里第一层级固定是顶级栏目的目录名称*/
- static $tdirnameArr = null;
- null === $tdirnameArr && $tdirnameArr = every_top_dirname_list();
- if (!empty($param['dirname']) && isset($tdirnameArr[md5($param['dirname'])]['tdirname'])) {
- $param['dirname'] = $tdirnameArr[md5($param['dirname'])]['tdirname'];
- }
- /*--end*/
- } else if (3 == intval($seo_rewrite_format)) {
- $url = 'home/View/index';
- }else if(4 == intval($seo_rewrite_format)){
- $dirname = str_replace($param['dirname'],"",$param['dirpath']);
- if (!empty($dirname)){
- $dirname = str_ireplace("/", "-", $dirname);
- if(!empty($dirname)){
- $dirname = trim($dirname,"-");
- }
- }
- if (!empty($dirname)){
- $url = 'home/View/index?'.$dirname;
- }else{
- $url = 'home/View/index';
- }
- }
- /*--end*/
- if (is_array($param)) {
- $vars = array(
- 'aid' => !empty($param['htmlfilename']) ? $param['htmlfilename'] : $param['aid'],
- 'dirname' => $param['dirname'],
- );
- } else {
- parse_str($param, $vars);
- }
- /*城市站点的域名路径*/
- if (true === $city_switch_on) {
- static $subDomain = null;
- if (null === $subDomain) {
- $subDomain = request()->subDomain();
- }
- static $rootDomain = null;
- if (null === $rootDomain) {
- $rootDomain = request()->rootDomain();
- }
- static $citysiteList = null;
- if (null === $citysiteList) {
- $citysiteList = get_citysite_list();
- }
- $domain = $domain_old;
- if (!empty($param['area_id']) && !empty($citysiteList[$param['area_id']])) {
- $vars['site'] = $citysiteList[$param['area_id']]['domain'];
- if (!empty($citysiteList[$param['area_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($param['city_id']) && !empty($citysiteList[$param['city_id']])) {
- $vars['site'] = $citysiteList[$param['city_id']]['domain'];
- if (!empty($citysiteList[$param['city_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($param['province_id']) && !empty($citysiteList[$param['province_id']])) {
- $vars['site'] = $citysiteList[$param['province_id']]['domain'];
- if (!empty($citysiteList[$param['province_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($subDomain) && 'www' != $subDomain && $subDomain == get_home_site()) {
- $vars['site'] = true;
- $domain = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', $web_basehost);
- } else {
- $vars['site'] = true;
- }
- }
- /*--end*/
- $eyouUrl = url($url, $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
-
- /*城市站点的域名路径*/
- if (true === $city_switch_on) { // 全国站显示城市文档时的URL处理
- if (true !== $vars['site'] && !empty($vars['site']) && $vars['site'] != $subDomain && !strstr($eyouUrl, $vars['site'])) {
- if (stristr($eyouUrl, 'index.php')) {
- $eyouUrl = str_ireplace('index.php', "index.php/{$vars['site']}", $eyouUrl);
- } else if (!empty($root_dir)) {
- if (is_http_url($eyouUrl)) {
- $eyouUrl = preg_replace('/(\.([^\.\/]+))'.preg_quote($root_dir, '/').'/i', '${1}'.$root_dir.'/'.$vars['site'], $eyouUrl);
- } else {
- $eyouUrl = preg_replace('/^'.preg_quote($root_dir, '/').'/i', $root_dir.'/'.$vars['site'], $eyouUrl);
- }
- } else if (empty($root_dir)) {
- if (is_http_url($eyouUrl)) {
- $eyouUrl = preg_replace('/^(\.([^\.\/]+))\//i', '${1}/'.$vars['site'].'/', $eyouUrl);
- } else {
- $eyouUrl = preg_replace('/^\//i', '/'.$vars['site'].'/', $eyouUrl);
- }
- }
- }
- }
- /*--end*/
- } else {
- if (is_array($param)) {
- $vars = array(
- 'aid' => $param['aid'],
- );
- } else {
- parse_str($param, $vars);
- }
- /*城市站点的域名路径*/
- if (true === $city_switch_on) {
- static $subDomain = null;
- if (null === $subDomain) {
- $subDomain = request()->subDomain();
- }
- static $rootDomain = null;
- if (null === $rootDomain) {
- $rootDomain = request()->rootDomain();
- }
- static $citysiteList = null;
- if (null === $citysiteList) {
- $citysiteList = get_citysite_list();
- }
- $domain = $domain_old;
- if (!empty($param['area_id']) && !empty($citysiteList[$param['area_id']])) {
- $vars['site'] = $citysiteList[$param['area_id']]['domain'];
- if (!empty($citysiteList[$param['area_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($param['city_id']) && !empty($citysiteList[$param['city_id']])) {
- $vars['site'] = $citysiteList[$param['city_id']]['domain'];
- if (!empty($citysiteList[$param['city_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($param['province_id']) && !empty($citysiteList[$param['province_id']])) {
- $vars['site'] = $citysiteList[$param['province_id']]['domain'];
- if (!empty($citysiteList[$param['province_id']]['is_open'])) {
- $domain = $vars['site'].'.'.$rootDomain;
- $vars['site'] = true;
- }
- } else if (!empty($subDomain) && 'www' != $subDomain && $subDomain == get_home_site()) {
- $vars['site'] = true;
- $domain = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', $web_basehost);
- } else {
- $vars['site'] = true;
- }
- }
- /*--end*/
- // $vars = http_build_query($vars);
- $eyouUrl = url('home/View/index', $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
-
- /*城市站点的域名路径*/
- if (true === $city_switch_on) { // 全国站显示城市文档时的URL处理
- if (true !== $vars['site'] && !empty($vars['site']) && $vars['site'] != $subDomain) {
- $eyouUrl .= "&site={$vars['site']}";
- }
- }
- /*--end*/
- }
-
- return $eyouUrl;
- }
- }
-
- if (!function_exists('tagurl')) {
- /**
- * Tag标签Url生成
- * @param string $url 路由地址
- * @param string|array $param 变量
- * @param bool|string $suffix 生成的URL后缀
- * @param bool|string $domain 域名
- * @param string $seo_pseudo URL模式
- * @param string $seo_pseudo_format URL格式
- * @return string
- */
- function tagurl($url = '', $param = '', $suffix = true, $domain = false, $seo_pseudo = '', $seo_pseudo_format = null)
- {
- if (!$domain){
- static $absolute_path_open = null;
- null === $absolute_path_open && $absolute_path_open = tpCache('web.absolute_path_open'); //是否开启绝对链接
- if ($absolute_path_open){
- $domain = true;
- }
- }
-
- $eyouUrl = '';
- static $is_plus_tags = null;
- if (null === $is_plus_tags) {
- if (is_dir('./weapp/Tags/')) {
- $is_plus_tags = 1;
- } else {
- $is_plus_tags = 0;
- }
- }
-
- static $tags_html = null;
- if (null === $tags_html && !empty($is_plus_tags)) {
- $tags_html = config('tpcache.plus_tags_html'); //tags插件是否开启,1:开启,0:关闭
- }
- static $tags_seo_pseudo = null;
- if (!empty($tags_html)){
- $tagsModel = new \weapp\Tags\model\TagsModel;
- $tagsConfData = $tagsModel->getWeappData();
- if (!empty($tagsConfData['data']['seo_pseudo'])){
- $tags_seo_pseudo = $tagsConfData['data']['seo_pseudo'];
- }
- }
- if (!empty($tags_html) && (empty($tags_seo_pseudo) || $tags_seo_pseudo == 2)) { //插件静态模式
- static $tagsConf = null;
- null === $tagsConf && $tagsConf = tpCache('tags');
- if (!empty($param['tagid'])){ //内页
- $eyouUrl = ROOT_DIR."/tags/{$param['tagid']}.html";
- if (!empty($tagsConf['tags_mobile_dir']) && isMobile()){
- $eyouUrl = ROOT_DIR."/{$tagsConf['tags_mobile_dir']}/{$param['tagid']}.html";
- }else if (!empty($tagsConf['tags_pc_dir']) && !isMobile()){
- $eyouUrl = ROOT_DIR."/{$tagsConf['tags_pc_dir']}/{$param['tagid']}.html";
- }
- }else{ //列表页
- $eyouUrl = ROOT_DIR."/tags/";
- if (!empty($tagsConf['tags_mobile_dir']) && isMobile()){
- $eyouUrl = ROOT_DIR."/{$tagsConf['tags_mobile_dir']}/";
- }else if (!empty($tagsConf['tags_pc_dir']) && !isMobile()){
- $eyouUrl = ROOT_DIR."/{$tagsConf['tags_pc_dir']}/";
- }
- }
-
- if (false !== $domain) {
- static $re_domain = null;
- null === $re_domain && $re_domain = request()->domain();
- if (true === $domain) {
- $eyouUrl = $re_domain.$eyouUrl;
- } else {
- $host = Config::get('app_host') ?: request()->host();
- $rootDomain = substr_count($host, '.') > 1 ? substr(strstr($host, '.'), 1) : $host;
- if (substr_count($domain, '.') < 2 && !strpos($domain, $rootDomain)) {
- $domain .= '.' . $rootDomain;
- }
- if (false !== strpos($domain, '://')) {
- $scheme = '';
- } else {
- $scheme = request()->isSsl() || Config::get('is_https') ? 'https://' : 'http://';
- }
- $eyouUrl = $scheme.rtrim($domain, '/').$eyouUrl;
- }
- }
- } else {
- if (is_array($param)) {
- $vars = array(
- 'tagid' => $param['tagid'],
- );
- $vars = http_build_query($vars);
- } else {
- $vars = $param;
- }
-
- if (empty($seo_pseudo)) {
- if (!empty($tags_seo_pseudo)) { // tag静态化插件的伪静态和动态URL
- $seo_pseudo = $tags_seo_pseudo;
- $seo_pseudo_format = 1;
- } else {
- static $seo_config = null;
- null === $seo_config && $seo_config = tpCache('seo');
- $seo_pseudo = !empty($seo_config['seo_pseudo']) ? $seo_config['seo_pseudo'] : config('ey_config.seo_pseudo');
- $seo_dynamic_format = !empty($seo_config['seo_dynamic_format']) ? $seo_config['seo_dynamic_format'] : config('ey_config.seo_dynamic_format');
- if (1 == $seo_pseudo) {
- $seo_pseudo_format = $seo_dynamic_format;
- }
- }
- } else if (empty($seo_pseudo_format)) {
- $seo_pseudo_format = config('ey_config.seo_dynamic_format');
- }
- $eyouUrl = url($url, $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
- $eyouUrl = auto_hide_index($eyouUrl);
- }
-
- return $eyouUrl;
- }
- }
-
- if (!function_exists('askurl')) {
- /**
- * 问答模型Url生成
- * @param string $url 路由地址
- * @param string|array $param 变量
- * @param bool|string $suffix 生成的URL后缀
- * @param bool|string $domain 域名
- * @param string $seo_pseudo URL模式
- * @param string $seo_pseudo_format URL格式
- * @return string
- */
- function askurl($url = '', $param = '', $suffix = true, $domain = false, $seo_pseudo = '', $seo_pseudo_format = null, $seo_inlet = null)
- {
- $eyouUrl = '';
- static $static_seo_pseudo = null;
- null === $static_seo_pseudo && $static_seo_pseudo = tpCache('seo.seo_pseudo');
- $seo_pseudo = !empty($seo_pseudo) ? $seo_pseudo : $static_seo_pseudo;
- if (empty($seo_pseudo_format)) {
- if (1 == $seo_pseudo) {
- $seo_pseudo_format = config('ey_config.seo_dynamic_format');
- }
- }
-
- // 多站点 - 静态模式下默认以动态URL访问
- static $city_switch_on = null;
- null === $city_switch_on && $city_switch_on = config('city_switch_on');
- if (true === $city_switch_on) {
- if ((1 == $seo_pseudo && 2 == $seo_pseudo_format) || (2 == $seo_pseudo)) {
- $seo_pseudo = 1;
- $seo_pseudo_format = 1;
- }
- }
-
- if ($seo_pseudo == 3 || $seo_pseudo == 2) {
- if (is_array($param)) {
- $vars = $param;
- } else {
- $vars = $param;
- }
- $eyouUrl = url($url, $vars, $suffix, $domain,3, $seo_pseudo_format, $seo_inlet);
- if (!strstr($eyouUrl, '.htm')){
- $eyouUrl .= '/';
- }
- } else {
- $eyouUrl = url($url, $param, $suffix, $domain, $seo_pseudo, $seo_pseudo_format, $seo_inlet);
- }
-
- return $eyouUrl;
- }
- }
-
- if (!function_exists('siteurl')) {
- /**
- * 多城市站点Url生成
- * @param string|array $siteinfo 城市站点信息
- * @return string
- */
- function siteurl($siteinfo = '')
- {
- $eyouUrl = '';
- // 是否支持去掉index.php小尾巴
- static $seo_inlet = null;
- null === $seo_inlet && $seo_inlet = tpCache('seo.seo_inlet');
- // URL模式
- static $seo_pseudo = null;
- null === $seo_pseudo && $seo_pseudo = tpCache('seo.seo_pseudo');
- // http/https协议
- static $scheme = null;
- null === $scheme && $scheme = request()->scheme();
- // 网站根域名
- static $root_domain = null;
- null === $root_domain && $root_domain = request()->rootDomain();
- // 当前域名带端口
- static $host = null;
- null === $host && $host = request()->host();
- // 端口号
- static $port = null;
- null === $port && $port = request()->port();
- // 网站域名
- static $full_domain = null;
- if (null === $full_domain) {
- $web_basehost = tpCache('web.web_basehost');
- $full_domain = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', $web_basehost);
- $full_domain = $scheme.'://'.$full_domain;
- if (stristr($host, ':')) {
- $full_domain .= ":{$port}";
- }
- }
-
- // 多站点 - 静态模式下默认以动态URL访问
- static $city_switch_on = null;
- null === $city_switch_on && $city_switch_on = config('city_switch_on');
- if (true === $city_switch_on) {
- if (2 == $seo_pseudo) {
- $seo_pseudo = 1;
- }
- }
-
- /*去掉入口文件*/
- $inletStr = '/index.php';
- 1 == intval($seo_inlet) && $inletStr = '';
- /*--end*/
-
- if (is_array($siteinfo)) {
- $vars = $siteinfo;
- } else {
- parse_str($siteinfo, $vars);
- }
-
- if (1 == $seo_pseudo) {
- if (empty($vars['is_open'])) {
- $url = $full_domain.ROOT_DIR.$inletStr;
- if (!empty($inletStr)) {
- $url .= '?';
- } else {
- $url .= '/?';
- }
- $eyouUrl = $url.http_build_query(['site'=>$vars['domain']]);
- } else {
- $url = $scheme.'://'.$vars['domain'].'.'.$root_domain.ROOT_DIR;
- $eyouUrl = $url;
- }
- } else {
- if (empty($vars['is_open'])) {
- $eyouUrl = $full_domain.ROOT_DIR.$inletStr.'/'.$vars['domain'].'/';
- } else {
- $eyouUrl = $scheme.'://'.$vars['domain'].'.'.$root_domain.ROOT_DIR.'/';
- }
- }
-
- return $eyouUrl;
- }
- }
-
- if (!function_exists('eyIntval')) {
- /**
- * 强制把数值转为整型
- * @param mixed $data 任意数值
- * @return mixed
- */
- function eyIntval($data)
- {
- if (is_array($data)) {
- foreach ($data as $key => $val) {
- $data[$key] = intval($val);
- }
- } else if (is_string($data) && stristr($data, ',')) {
- $arr = explode(',', $data);
- foreach ($arr as $key => $val) {
- $arr[$key] = intval($val);
- }
- $data = implode(',', $arr);
- } else {
- $data = intval($data);
- }
-
- return $data;
- }
- }
-
- if (!function_exists('eyPreventShell')) {
- /**
- * 验证是否shell注入
- * @param mixed $data 任意数值
- * @return mixed
- */
- function eyPreventShell($data = '')
- {
- $redata = true;
- if (!is_array($data) && (preg_match('/^phar:\/\//i', $data) || stristr($data, 'phar://'))) {
- $redata = false;
- }
-
- return $redata;
- }
- }
|