-
/www/wwwroot/gplpak.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 -
/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/Fcms/Control/Show.php : 17 — Phpcmf\Model->get ()
10 11 if (IS_POST) { 12 $this->_json(0, '禁止提交,请检查提交地址是否有误'); 13 } 14 15 // 共享模块通过id查找内容 16 $id = (int)\Phpcmf\Service::L('input')->get('id'); 17 $row = \Phpcmf\Service::M()->table(SITE_ID.'_share_index')->get($id); 18 19 // 挂钩点 20 $rt2 = \Phpcmf\Hooks::trigger_callback('module_show_share', $row); 21 if ($rt2 && isset($rt2['code']) && $rt2['code']) { 22 $row = $rt2['data']; 23 $id = $row['id']; 24 } -
/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()