-
/www/wwwroot/bao.5k98.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/bao.5k98.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/bao.5k98.com/dayrui/App/Weixin/Models/Weixin.php : 14 — CodeIgniter\Database\BaseBuilder->get ()
7 public function wxtable($name) { 8 return weixin_wxtable($name); 9 } 10 11 // 获取配置信息 12 public function get_config($name) { 13 14 $data = $this->db->table(weixin_wxtable('weixin'))->where('name', $name)->get()->getRowArray(); 15 if ($data) { 16 $data = dr_string2array($data['value']); 17 return $data; 18 } else { 19 $this->db->table(weixin_wxtable('weixin'))->insert([ 20 'name' => $name, 21 'value' => '', -
/www/wwwroot/bao.5k98.com/dayrui/App/Weixin/Config/Hooks.php : 31 — Phpcmf\Model\Weixin\Weixin->get_config ()
24 if (IS_API 25 || IS_API_HTTP 26 || in_array(APP_DIR, ['weixin', 'api', 'member']) 27 || in_array(\Phpcmf\Service::L('Router')->class, ['register', 'login', 'api'])) { 28 return; 29 } elseif (!IS_MEMBER && !\Phpcmf\Service::C()->uid) { 30 \Phpcmf\Service::C()->init_file('weixin'); 31 $config = \Phpcmf\Service::M('Weixin', 'Weixin')->get_config('config'); // 配置 32 if (isset($config['autologin']) && $config['autologin'] 33 && strpos((string)$_SERVER['HTTP_USER_AGENT'], 'MicroMessenger')) { 34 dr_redirect(SITE_URL.'index.php?s=weixin&c=go&url='.urlencode(FC_NOW_URL)); 35 } 36 } 37 }); -
{PHP internal code} — Phpcmf\Service::{closure} ()
-
/www/wwwroot/bao.5k98.com/dayrui/Fcms/Core/Hooks.php : 337 — call_user_func()
-
/www/wwwroot/bao.5k98.com/dayrui/Fcms/Core/Phpcmf.php : 453 — Phpcmf\Hooks::trigger ()
446 // 用户系统初始化 447 (IS_MEMBER || APP_DIR == 'member') && $this->init_file('member'); 448 449 // 插件目录初始化(排除用户系统重复触发) 450 APP_DIR && APP_DIR != 'member' && $this->init_file(APP_DIR); 451 452 // 挂钩点 程序初始化之后 453 \Phpcmf\Hooks::trigger('cms_init'); 454 } 455 456 /** 457 * 插件目录初始化文件 458 */ 459 public function init_file($namespace) { 460 -
/www/wwwroot/bao.5k98.com/dayrui/Fcms/Core/Phpcmf.php : 427 — Phpcmf\Common->_init_run ()
420 } else { 421 $this->_msg(0, dr_lang('账号被锁定')); 422 } 423 } 424 } 425 426 // 加载初始化文件 427 $this->_init_run(); 428 } 429 430 /** 431 * 加载初始化文件 432 */ 433 private function _init_run() { 434 -
/www/wwwroot/bao.5k98.com/dayrui/System/Extend/Run.php : 115 — Phpcmf\Common->__construct ()
108 109 $class = $namespace.'\\'.$controller; 110 if (! class_exists($class)) { 111 throw \CodeIgniter\Exceptions\PageNotFoundException::forControllerNotFound($class); 112 exit('<font color=red>控制器不存在</font>'); 113 } 114 115 $app = new $class; 116 117 if (! method_exists($app, $method)) { 118 throw \CodeIgniter\Exceptions\PageNotFoundException::forMethodNotFound($class, $method); 119 exit('<font color=red>方法不存在</font>'); 120 } 121 122 if (IS_POST && SYS_CSRF) { -
/www/wwwroot/bao.5k98.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/bao.5k98.com/dayrui/Fcms/Init.php — require()
-
require /www/wwwroot/bao.5k98.com/public/index.php — require()