-
/www/wwwroot/gplpak.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/gplpak.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/gplpak.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/gplpak.com/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/gplpak.com/dayrui/Fcms/Core/Model.php : 502 — CodeIgniter\Database\BaseBuilder->get ()
495 496 /* 497 * 获取单个数据 498 * 主键 499 * */ 500 public function get($id) { 501 502 $query = $this->db->table($this->table)->where($this->key, (int)$id)->get(); 503 if (!$query) { 504 $this->_clear(); 505 return []; 506 } 507 508 $rt = $query->getRowArray(); 509 $this->_clear(); -
/www/wwwroot/gplpak.com/dayrui/App/Module/Models/Content.php : 974 — Phpcmf\Model->get ()
967 if (!$row) { 968 $row = $this->table($table)->get($id); 969 if (!$row) { 970 return []; 971 } 972 } 973 } else { 974 $row = $this->table($table)->get($id); 975 if (!$row) { 976 // 主表不存在尝试判断分表 977 $index = $this->table($table.'_index')->get($id); 978 if (!$index) { 979 return []; 980 } 981 $row = $this->table(dr_module_ctable($table, dr_cat_value($index['catid'])))->get($id); -
/www/wwwroot/gplpak.com/dayrui/App/Module/Extends/Home/Module.php : 495 — Phpcmf\Model\Module\Content->get_data ()
488 $id = md5($param['field'].$param['value']); 489 $is_id = 0; 490 } 491 492 $name = 'module_'.$this->module['dirname'].'_show_id_'.$id.($this->is_mobile ? '_m' : '').($page > 1 ? '_p'.$page : ''); 493 $data = \Phpcmf\Service::L('cache')->get_data($name); 494 if (!$data) { 495 $data = $this->content_model->get_data($is_id ? $id : 0, 0, $param); 496 if (!$data) { 497 $this->goto_404_page(dr_lang('%s内容(#%s)不存在', $this->module['name'], $id)); 498 return; 499 } 500 501 // 检测转向字段 502 if (!$rt) { -
/www/wwwroot/gplpak.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/gplpak.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/gplpak.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/gplpak.com/dayrui/Fcms/Init.php — require()
-
require /www/wwwroot/gplpak.com/public/index.php — require()
-
require /www/wwwroot/gplpak.com/public/de/index.php — require()