-
/www/wwwroot/hukou021.com/www.hukou021.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/hukou021.com/www.hukou021.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/hukou021.com/www.hukou021.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/hukou021.com/www.hukou021.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/hukou021.com/www.hukou021.com/dayrui/Fcms/Core/Model.php : 563 — CodeIgniter\Database\BaseBuilder->get ()
556 } else { 557 $builder->limit($a); 558 } 559 } elseif ($num) { 560 $builder->limit($num); 561 } 562 563 $query = $builder->get(); 564 if (!$query) { 565 $this->_clear(); 566 return []; 567 } 568 569 $rt = $query->getResultArray(); 570 if ($rt && $key) { -
/www/wwwroot/hukou021.com/www.hukou021.com/dayrui/App/Sitemap/Models/Sitemap.php : 52 — Phpcmf\Model->getAll ()
45 } 46 } 47 48 $limit = intval($config['sitemap_limit']); 49 !$limit && $limit = 1000; 50 51 $txt = ''; 52 $data = $this->table_site('tag')->order_by('id desc')->getAll($limit); 53 foreach ($data as $t) { 54 $txt.= dr_url_prefix(\Phpcmf\Service::L('router')->tag_url($t)).PHP_EOL; 55 } 56 57 if ($cache_file) { 58 file_put_contents($cache_file, $txt); 59 } -
/www/wwwroot/hukou021.com/www.hukou021.com/dayrui/App/Sitemap/Controllers/Home.php : 26 — Phpcmf\Model\Sitemap\Sitemap->tag_txt ()
19 dr_safe_filename($_GET['mid']), 20 intval($_GET['catid']) 21 );exit; 22 } 23 24 public function tag() { 25 header('Content-Type: text/plain'); 26 echo \Phpcmf\Service::M('sitemap', 'sitemap')->tag_txt();exit; 27 } 28 29 30 } 31 -
/www/wwwroot/hukou021.com/www.hukou021.com/dayrui/System/Extend/Run.php : 149 — Phpcmf\Controllers\Home->tag ()
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/hukou021.com/www.hukou021.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/hukou021.com/www.hukou021.com/dayrui/Fcms/Init.php — require()
-
require /www/wwwroot/hukou021.com/www.hukou021.com/public/index.php — require()