-
/www/wwwroot/www.mian-du.cn/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.mian-du.cn/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.mian-du.cn/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.mian-du.cn/dayrui/System/Database/BaseBuilder.php : 1649 — CodeIgniter\Database\BaseConnection->query ()
1642 1643 if ($limit !== null) { 1644 $this->limit($limit, $offset); 1645 } 1646 1647 $result = $this->testMode 1648 ? $this->getCompiledSelect($reset) 1649 : $this->db->query($this->compileSelect(), $this->binds, false); 1650 1651 if ($reset) { 1652 $this->resetSelect(); 1653 1654 // Clear our binds so we don't eat up memory 1655 $this->binds = []; 1656 } -
/www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Extends/Home/Module.php : 800 — CodeIgniter\Database\BaseBuilder->get ()
793 } 794 795 // 上一篇文章 796 $builder = \Phpcmf\Service::M()->db->table($table); 797 $builder->where('catid', (int)$data['catid']);//->where('status', 9) 798 $is_fstatus && $builder->where('fstatus', 1); 799 $builder->where('id<'. (int)$data['id'])->orderBy('id desc'); 800 $data['prev_page'] = $builder->limit(1)->get()->getRowArray(); 801 if (isset($data['prev_page']['url']) && $data['prev_page']['url']) { 802 $data['prev_page']['url'] = dr_url_rel(dr_url_prefix($data['prev_page']['url'], $this->module['dirname'], SITE_ID, $this->is_mobile)); 803 } 804 805 // 下一篇文章 806 $builder = \Phpcmf\Service::M()->db->table($table); 807 $builder->where('catid', (int)$data['catid']);//->where('status', 9) -
/www/wwwroot/www.mian-du.cn/dayrui/App/Cms/Extends/Home/Module.php : 515 — Phpcmf\Home\Module->_Show_Data ()
508 \Phpcmf\Service::V()->display('goto_url'); 509 return $data; 510 } 511 } 512 } 513 514 // 格式化字段 515 $data = $this->_Show_Data($data, $page); 516 517 // 缓存结果 518 if ($data['uid'] != $this->uid && SYS_CACHE) { 519 if ($this->member && $this->member['is_admin']) { 520 // 管理员时不进行缓存 521 \Phpcmf\Service::L('cache')->init()->delete($name); 522 } else { -
/www/wwwroot/www.mian-du.cn/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.mian-du.cn/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.mian-du.cn/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.mian-du.cn/dayrui/Fcms/Init.php — require()
-
require /www/wwwroot/www.mian-du.cn/public/index.php — require()
-
require /www/wwwroot/www.mian-du.cn/public/en/index.php — require()