-
/www/wwwroot/www.uaa5.com/dayrui/System/Database/BaseConnection.php : 614 — CodeIgniter\Database\BaseConnection->initialize ()
607 * @todo BC set $queryClass default as null in 4.1 608 */ 609 public function query(string $sql, $binds = null, bool $setEscapeFlags = true, string $queryClass = '') 610 { 611 $queryClass = $queryClass !== '' && $queryClass !== '0' ? $queryClass : $this->queryClass; 612 613 if (empty($this->connID)) { 614 $this->initialize(); 615 } 616 617 /** 618 * @var Query $query 619 */ 620 $query = new $queryClass($this); 621 -
/www/wwwroot/www.uaa5.com/dayrui/Fcms/Core/View.php : 1349 — CodeIgniter\Database\BaseConnection->query ()
1342 $sql = str_replace($this->_select_rt_name, 'sum('.$system['sum'].') as ct', $sql); 1343 break; 1344 } 1345 } 1346 1347 // 执行SQL 1348 $t = microtime(TRUE); 1349 $query = $mysql->query($sql); 1350 $time = microtime(TRUE) - $t; 1351 1352 // 记录慢日志 1353 if ($time > 1 && is_file(WRITEPATH.'database/sql.lock')) { 1354 $file = WRITEPATH.'database/Sql/sql.txt'; 1355 $path = dirname($file); 1356 if (!is_dir($path)) { -
/www/wwwroot/www.uaa5.com/dayrui/App/Module/Action/Module.php : 290 — Phpcmf\View->_query ()
283 $sql_limit = "LIMIT {$system['num']}"; 284 } 285 286 $system['order'] = $this->_set_orders_field_prefix($system['order'], $_order); // 给排序字段加上表前缀 287 $sql = "SELECT " .$this->_get_select_field($system['field'] ? $system['field'] : '*') . " FROM $sql_from " . ($sql_where ? "WHERE $sql_where" : "") . ($system['order'] == "null" || !$system['order'] ? "" : " ORDER BY {$system['order']}") . " $sql_limit"; 288 } 289 290 $data = $this->_query($sql, $system); 291 292 // 缓存查询结果 293 if (is_array($data) && $data) { 294 // 模块表的系统字段 295 $fields['inputtime'] = ['fieldtype' => 'Date']; 296 $fields['updatetime'] = ['fieldtype' => 'Date']; 297 // 格式化显示自定义字段内容 -
require /www/wwwroot/www.uaa5.com/dayrui/Fcms/Core/View.php — require()
-
/www/wwwroot/www.uaa5.com/cache/template/_DS_www_DS_wwwroot_DS_www.uaa5.com_DS_template_DS_pc_DS_default_DS_home_DS_index.html.cache.php : 55 — Phpcmf\View->list_tag ()
48 </div> 49 <div class="col-xl-4"> 50 <!--begin::Chart Widget 35--> 51 <div class="card card-flush h-md-100"> 52 <!--begin::Body--> 53 <div data-action="index_zuixin" class="tpl-edit-show card-body pt-6"> 54 <!--最新文章--> 55 <?php $list_return = $this->list_tag("action=module module=news num=6"); if ($list_return && is_array($list_return)) extract($list_return, EXTR_OVERWRITE); $count=dr_count($return); if (is_array($return) && $return) { $key=-1; foreach ($return as $t) { $key++; $is_first=$key==0 ? 1 : 0;$is_last=$count==$key+1 ? 1 : 0; ?> 56 <!--begin::Item--> 57 <div class="d-flex flex-stack"> 58 <!--begin::Section--> 59 <div class="d-flex align-items-center flex-row-fluid flex-wrap"> 60 <!--begin:Author--> 61 <div class="flex-grow-1 me-2"> 62 <a href="<?php echo $t['url']; ?>" class="text-gray-800 text-hover-primary fs-6 fw-bold"><?php echo dr_strcut($t['title'], 15); ?></a> -
include /www/wwwroot/www.uaa5.com/dayrui/Fcms/Core/View.php — include()
-
/www/wwwroot/www.uaa5.com/dayrui/Fcms/Control/Home.php : 21 — Phpcmf\View->display ()
14 15 ob_start(); 16 \Phpcmf\Service::V()->assign([ 17 'indexc' => 1, 18 'fix_html_now_url' => defined('IS_MOBILE') && IS_MOBILE ? SITE_MURL : SITE_URL, 19 ]); 20 \Phpcmf\Service::V()->assign(\Phpcmf\Service::L('Seo')->index()); 21 \Phpcmf\Service::V()->display('index.html'); 22 $html = ob_get_clean(); 23 24 // 开启过首页静态时 25 if ($this->site_info[SITE_ID]['SITE_INDEX_HTML'] && !defined('SC_HTML_FILE')) { 26 if (IS_CLIENT) { 27 // 自定义终端 28 $file = \Phpcmf\Service::L('html')->get_webpath(SITE_ID, 'site', IS_CLIENT.'/index.html'); -
/www/wwwroot/www.uaa5.com/dayrui/Fcms/Control/Home.php : 60 — Phpcmf\Control\Home->_index ()
53 $this->_json(0, '禁止提交,请检查提交地址是否有误'); 54 } 55 56 // 挂钩点 网站首页时 57 \Phpcmf\Hooks::trigger('cms_index'); 58 \Phpcmf\Service::L('Router')->is_redirect_url(dr_url_prefix('/'), 1); 59 60 $this->_index(); 61 } 62 63 /** 64 * 404 页面 65 */ 66 public function s404() { 67 if (IS_DEV) { -
/www/wwwroot/www.uaa5.com/dayrui/System/Extend/Run.php : 148 — Phpcmf\Control\Home->index ()
141 'value' => $value 142 ]); 143 144 } 145 } 146 } 147 148 $app->$method(); 149 150 if (CI_DEBUG) { 151 $tool = new \CodeIgniter\Debug\Toolbar(config(\Config\Toolbar::class)); 152 $tool->prepare($this); 153 } 154 155 -
/www/wwwroot/www.uaa5.com/dayrui/System/Init.php : 402 — Frame\Run->bootWeb ()
395 $tool->respond(); 396 }); 397 } 398 399 400 // 启动框架 401 $run = new \Frame\Run(); 402 $run->bootWeb(); 403 404 -
require /www/wwwroot/www.uaa5.com/dayrui/Fcms/Init.php — require()
-
require /www/wwwroot/www.uaa5.com/public/index.php — require()