-
/file/wwwroot/e.gangyiku.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 -
/file/wwwroot/e.gangyiku.com/dayrui/Fcms/Core/View.php : 1372 — CodeIgniter\Database\BaseConnection->query ()
1365 $sql = str_replace($this->_select_rt_name, 'sum('.$system['sum'].') as ct', $sql); 1366 break; 1367 } 1368 } 1369 1370 // 执行SQL 1371 $t = microtime(TRUE); 1372 $query = $mysql->query($sql); 1373 $time = microtime(TRUE) - $t; 1374 1375 // 记录慢日志 1376 if ($time > 1 && is_file(WRITEPATH.'database/sql.lock')) { 1377 $file = WRITEPATH.'database/Sql/sql.txt'; 1378 $path = dirname($file); 1379 if (!is_dir($path)) { -
/file/wwwroot/e.gangyiku.com/dayrui/App/Module/Action/Module.php : 264 — Phpcmf\View->_query ()
257 if ($system['num']) { 258 $this->_list_error[] = '存在page参数时,num参数将会无效'; 259 } 260 $pagesize = (int)$system['pagesize']; 261 !$pagesize && $pagesize = 10; 262 // 数据量 263 $sql = "SELECT count(*) as c FROM $sql_from " . ($sql_where ? "WHERE $sql_where" : "") . " ORDER BY NULL"; 264 $row = $this->_query($sql, $system, FALSE); 265 $total = (int)$row['c']; 266 if ($system['maxlimit'] && $total > $system['maxlimit']) { 267 $total = $system['maxlimit']; // 最大限制 268 if ($page * $pagesize > $total) { 269 $return_data = $this->_return($system['return'], 'maxlimit设置最大显示'.$system['maxlimit'].'条,当前('.$total.')已超出', $sql, 0); 270 return; 271 } -
require /file/wwwroot/e.gangyiku.com/dayrui/Fcms/Core/View.php — require()
-
/file/wwwroot/e.gangyiku.com/cache/template/_DS_file_DS_wwwroot_DS_e.gangyiku.com_DS_template_DS_pc_DS_default_DS_home_DS_list.html.cache.php : 52 — Phpcmf\View->list_tag ()
45 </div> 46 <!--end::Header--> 47 <!--begin::Body--> 48 <div data-action="list" class="tpl-edit-show card-body pt-6"> 49 50 51 <!--分页显示列表数据--> 52 <?php $return = [];$list_return = $this->list_tag("action=module catid=$catid order=updatetime page=1"); 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; ?> 53 <div class=" d-flex align-items-center p-lg-3"> 54 <!--begin::Icon--> 55 <div class="mobile-hidden d-flex h-120px w-120px h-lg-120px w-lg-120px flex-shrink-0 flex-center position-relative align-self-start align-self-lg-center mt-3 mt-lg-0"> 56 <div class="symbol symbol-90px symbol-2by3 me-4"> 57 <div class="symbol-label" style="background-image: url('<?php echo dr_thumb($t['thumb']); ?>')"></div> 58 </div> 59 </div> -
include /file/wwwroot/e.gangyiku.com/dayrui/Fcms/Core/View.php — include()
-
/file/wwwroot/e.gangyiku.com/dayrui/App/Module/Extends/Home/Module.php : 453 — Phpcmf\View->display ()
446 } else { 447 $tpl = $category['setting']['template']['list'] ? $category['setting']['template']['list'] : 'list.html'; 448 } 449 } 450 451 // 输出方式 452 if (!$rt) { 453 \Phpcmf\Service::V()->display($tpl); 454 } else { 455 $category['phpcmf_tpl'] = $category['tpl'] = $tpl; 456 return $category; 457 } 458 } 459 460 // 模块内容页 -
/file/wwwroot/e.gangyiku.com/dayrui/Fcms/Control/Category.php : 86 — Phpcmf\Home\Module->_Category ()
79 $this->goto_404_page(dr_lang('栏目所属模块不存在')); 80 } 81 } else { 82 $this->_module_init('share'); 83 } 84 85 // 调用栏目方法 86 $this->_Category($id, $dir, $page); 87 } 88 89 } 90 -
/file/wwwroot/e.gangyiku.com/dayrui/System/Extend/Run.php : 149 — Phpcmf\Control\Category->index ()
142 'value' => $value 143 ]); 144 145 } 146 } 147 } 148 149 $app->$method(); 150 151 if (CI_DEBUG) { 152 $tool = new \CodeIgniter\Debug\Toolbar(config(\Config\Toolbar::class)); 153 $tool->prepare($this); 154 } 155 156 -
/file/wwwroot/e.gangyiku.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 /file/wwwroot/e.gangyiku.com/dayrui/Fcms/Init.php — require()
-
require /file/wwwroot/e.gangyiku.com/public/index.php — require()