-
/www/wwwroot/www.parkooair.com/dayrui/System/Database/MySQLi/Connection.php : 327 — mysqli->query ()
320 $this->connID->next_result(); 321 if ($res = $this->connID->store_result()) { 322 $res->free(); 323 } 324 } 325 326 try { 327 return $this->connID->query($this->prepQuery($sql), $this->resultMode); 328 } catch (mysqli_sql_exception $e) { 329 log_message('error', (string) $e); 330 331 if ($this->DBDebug) { 332 throw new DatabaseException($e->getMessage(), $e->getCode(), $e); 333 } 334 } -
/www/wwwroot/www.parkooair.com/dayrui/System/Database/BaseConnection.php : 729 — CodeIgniter\Database\MySQLi\Connection->execute ()
722 */ 723 public function simpleQuery(string $sql) 724 { 725 if (empty($this->connID)) { 726 $this->initialize(); 727 } 728 729 return $this->execute($sql); 730 } 731 732 /** 733 * Disable Transactions 734 * 735 * This permits transactions to be disabled at run-time. 736 * -
/www/wwwroot/www.parkooair.com/dayrui/System/Database/BaseConnection.php : 646 — CodeIgniter\Database\BaseConnection->simpleQuery ()
639 640 return $query; 641 } 642 643 // Run the query for real 644 try { 645 $exception = null; 646 $this->resultID = $this->simpleQuery($query->getQuery()); 647 } catch (DatabaseException $exception) { 648 $this->resultID = false; 649 } 650 651 if ($this->resultID === false) { 652 $query->setDuration($startTime, $startTime); 653 -
/www/wwwroot/www.parkooair.com/dayrui/Fcms/Core/View.php : 1522 — CodeIgniter\Database\BaseConnection->query ()
1515 $sql = str_replace($this->_select_rt_name, 'sum('.$system['sum'].') as ct', $sql); 1516 break; 1517 } 1518 } 1519 1520 // 执行SQL 1521 $t = microtime(TRUE); 1522 $query = $mysql->query($sql); 1523 $time = microtime(TRUE) - $t; 1524 1525 // 记录慢日志 1526 if ($time > 1 && is_file(WRITEPATH.'database/sql.lock')) { 1527 $file = WRITEPATH.'database/Sql/sql.txt'; 1528 $path = dirname($file); 1529 if (!is_dir($path)) { -
/www/wwwroot/www.parkooair.com/dayrui/App/Cms/Action/Module.php : 346 — Phpcmf\View->_query ()
339 $this->_list_error[] = '未设置num/page参数,已自动限制为最多返回100条,请在标签中显式设置num'; 340 } 341 342 $system['order'] = $this->_set_orders_field_prefix($system['order'], $_order); // 给排序字段加上表前缀 343 $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"; 344 } 345 346 $data = $this->_query($sql, $system); 347 348 // 缓存查询结果 349 if (is_array($data) && $data) { 350 // 模块表的系统字段 351 $fields['inputtime'] = ['fieldtype' => 'Date']; 352 $fields['updatetime'] = ['fieldtype' => 'Date']; 353 // 格式化显示自定义字段内容 -
require /www/wwwroot/www.parkooair.com/dayrui/App/Cms/Action/Related.php — require()
-
require /www/wwwroot/www.parkooair.com/dayrui/Fcms/Core/View.php — require()
-
/www/wwwroot/www.parkooair.com/cache/template/_DS_www_DS_wwwroot_DS_www.parkooair.com_DS_template_DS_de_DS_pkair2_DS_home_DS_news_DS_show.html.cache.php : 146 — Phpcmf\View->list_tag ()
139 </div> 140 141 <?php if ($tag) { ?> 142 <section class="uk-background-muted uk-padding"> 143 <div class="uk-container"> 144 <h3 class="uk-text-bolder uk-text-uppercase">Related articles</h3> 145 <div class="uk-grid-small" uk-grid uk-height-match="target: > div > .card-item"> 146 <?php $return = [];$list_return = $this->list_tag("action=related module=MOD_DIR tag=$tag num=2,4"); 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; ?> 147 <div class="uk-width-1-2 uk-width-1-4@m"> 148 <div class="card-item uk-background-default uk-padding-small"> 149 <a href="<?php echo $t['url']; ?>" title="<?php echo $t['title']; ?>" target="_blank" class="uk-display-block uk-index-radius uk-news-img"> 150 <img src="<?php echo dr_thumb($t['thumb']); ?>" alt="<?php echo $t['title']; ?>" loading="lazy"/> 151 </a> 152 <div class="title"><a href="<?php echo $t['url']; ?>" title="<?php echo $t['title']; ?>" target="_blank"><?php echo $t['title']; ?></a></div> 153 <p class="blog-item-foot uk-margin-remove uk-text-truncate"> -
include /www/wwwroot/www.parkooair.com/dayrui/Fcms/Core/View.php — include()
-
/www/wwwroot/www.parkooair.com/dayrui/App/Cms/Extends/Home/Module.php : 628 — Phpcmf\View->display ()
621 'related' => $related, 622 'urlrule' => dr_module_show_url($this->module, $data, '[page]'), 623 'fix_html_now_url' => defined('SC_HTML_FILE') ? dr_url_prefix(dr_module_show_url($this->module, $data, $page), $this->module['dirname'], SITE_ID, \Phpcmf\Service::IS_MOBILE_TPL()) : '', // 修复静态下的当前url变量 624 ]); 625 626 \Phpcmf\Service::V()->module($this->module['dirname']); 627 $data['phpcmf_tpl'] = isset($data['template']) && strpos($data['template'], '.html') !== FALSE && is_file(\Phpcmf\Service::V()->get_dir().$data['template']) ? $data['template'] : ($cat['setting']['template']['show'] ? $cat['setting']['template']['show'] : 'show.html'); 628 !$rt && \Phpcmf\Service::V()->display($data['phpcmf_tpl']); 629 630 return $data; 631 } 632 633 // 模块草稿、审核、定时、内容页 634 protected function _MyShow($type, $id = 0, $page = 1) { 635 -
/www/wwwroot/www.parkooair.com/dayrui/Fcms/Control/Show.php : 34 — Phpcmf\Home\Module->_Show ()
27 $this->goto_404_page(dr_lang('无法通过id找到共享模块的模块目录')); 28 } 29 30 // 初始化模块 31 $this->_module_init($mid); 32 33 // 调用内容方法 34 $this->_Show($id, null, max(1, (int)\Phpcmf\Service::L('input')->get('page'))); 35 } 36 37 } 38 -
/www/wwwroot/www.parkooair.com/dayrui/System/Extend/Run.php : 149 — Phpcmf\Control\Show->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 -
/www/wwwroot/www.parkooair.com/dayrui/System/Init.php : 404 — Frame\Run->bootWeb ()
397 $tool->respond(); 398 }); 399 } 400 401 402 // 启动框架 403 $run = new \Frame\Run(); 404 $run->bootWeb(); 405 406 -
require /www/wwwroot/www.parkooair.com/dayrui/Fcms/Init.php — require()
-
require /www/wwwroot/www.parkooair.com/public/index.php — require()
-
require /www/wwwroot/www.parkooair.com/public/de/index.php — require()