-
/www/wwwroot/91luohu.com/www.91luohu.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/91luohu.com/www.91luohu.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/91luohu.com/www.91luohu.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/91luohu.com/www.91luohu.com/dayrui/Fcms/Core/View.php : 1486 — CodeIgniter\Database\BaseConnection->query ()
1479 $sql = str_replace($this->_select_rt_name, 'sum('.$system['sum'].') as ct', $sql); 1480 break; 1481 } 1482 } 1483 1484 // 执行SQL 1485 $t = microtime(TRUE); 1486 $query = $mysql->query($sql); 1487 $time = microtime(TRUE) - $t; 1488 1489 // 记录慢日志 1490 if ($time > 1 && is_file(WRITEPATH.'database/sql.lock')) { 1491 $file = WRITEPATH.'database/Sql/sql.txt'; 1492 $path = dirname($file); 1493 if (!is_dir($path)) { -
/www/wwwroot/91luohu.com/www.91luohu.com/dayrui/App/Module/Action/Module.php : 340 — Phpcmf\View->_query ()
333 $sql_limit = "LIMIT {$system['num']}"; 334 } 335 336 $system['order'] = $this->_set_orders_field_prefix($system['order'], $_order); // 给排序字段加上表前缀 337 $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"; 338 } 339 340 $data = $this->_query($sql, $system); 341 342 // 缓存查询结果 343 if (is_array($data) && $data) { 344 // 模块表的系统字段 345 $fields['inputtime'] = ['fieldtype' => 'Date']; 346 $fields['updatetime'] = ['fieldtype' => 'Date']; 347 // 格式化显示自定义字段内容 -
require /www/wwwroot/91luohu.com/www.91luohu.com/dayrui/App/Module/Action/Related.php — require()
-
require /www/wwwroot/91luohu.com/www.91luohu.com/dayrui/Fcms/Core/View.php — require()
-
/www/wwwroot/91luohu.com/www.91luohu.com/cache/template/_DS_www_DS_wwwroot_DS_91luohu.com_DS_www.91luohu.com_DS_template_DS_pc_DS_fantu1_DS_home_DS_news_DS_show.html.cache.php : 91 — Phpcmf\View->list_tag ()
84 <p><?php echo dr_strcut($t['title'], 22, '...'); ?></p> 85 </a> 86 <?php } } ?> 87 <?php } ?> 88 </div> 89 <div class="news_list_right_bottom_content news_details_content_new_news_list"> 90 <?php if ($tag) { ?> 91 <?php $return = [];$list_return = $this->list_tag("action=related module=MOD_DIR tag=$tag num=10,10"); 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; ?> 92 <a href="<?php echo $t['url']; ?>" title="<?php echo $t['title']; ?>"><i></i> 93 <p><?php echo dr_strcut($t['title'], 22, '...'); ?></p> 94 </a> 95 <?php } } ?> 96 <?php } ?> 97 </div> 98 </div> -
include /www/wwwroot/91luohu.com/www.91luohu.com/dayrui/Fcms/Core/View.php — include()
-
/www/wwwroot/91luohu.com/www.91luohu.com/dayrui/App/Module/Extends/Home/Module.php : 616 — Phpcmf\View->display ()
609 'related' => $related, 610 'urlrule' => dr_module_show_url($this->module, $data, '[page]'), 611 '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变量 612 ]); 613 614 \Phpcmf\Service::V()->module($this->module['dirname']); 615 $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'); 616 !$rt && \Phpcmf\Service::V()->display($data['phpcmf_tpl']); 617 618 return $data; 619 } 620 621 // 模块草稿、审核、定时、内容页 622 protected function _MyShow($type, $id = 0, $page = 1) { 623 -
/www/wwwroot/91luohu.com/www.91luohu.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/91luohu.com/www.91luohu.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/91luohu.com/www.91luohu.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/91luohu.com/www.91luohu.com/dayrui/Fcms/Init.php — require()
-
require /www/wwwroot/91luohu.com/www.91luohu.com/public/index.php — require()