-
/var/www/www.jsjhdz.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 } -
/var/www/www.jsjhdz.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 * -
/var/www/www.jsjhdz.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 -
/var/www/www.jsjhdz.com/dayrui/App/Sitemap/Models/Sitemap.php : 378 — CodeIgniter\Database\BaseConnection->query ()
371 } else { 372 $sql.=' limit '.(($page - 1) * $pagesize).','.$pagesize; 373 } 374 } 375 376 $data = []; 377 378 $query = $this->db->query($sql); 379 if ($query) { 380 $rows = $query->getResultArray(); 381 if ($rows) { 382 foreach ($rows as $t) { 383 if (!$t['url']) { 384 continue; 385 } -
/var/www/www.jsjhdz.com/dayrui/App/Sitemap/Models/Sitemap.php : 292 — Phpcmf\Model\Sitemap\Sitemap->_sitemap_module_data ()
285 } 286 } 287 } 288 $config['sitemap'][$mid] = 0; 289 } 290 } 291 292 $data = $this->_sitemap_module_data($siteid, $config['sitemap'], $page, $pagesize, $limit); 293 if ($data) { 294 /* 295 usort($data, function($a, $b) { 296 if ($a['time'] == $b['time']) 297 return 0; 298 return ($a['time'] > $b['time']) ? -1 : 1; 299 });*/ -
/var/www/www.jsjhdz.com/dayrui/App/Sitemap/Controllers/Home.php : 11 — Phpcmf\Model\Sitemap\Sitemap->sitemap_txt ()
4 { 5 6 public function index() { 7 header('Content-Type: text/plain'); 8 echo \Phpcmf\Service::M('sitemap', 'sitemap')->sitemap_txt( 9 max(1, intval($_GET['p'])), 10 dr_safe_filename($_GET['mid']), 11 intval($_GET['catid']) 12 );exit; 13 } 14 15 public function xml() { 16 header('Content-Type: text/xml'); 17 echo \Phpcmf\Service::M('sitemap', 'sitemap')->sitemap_xml( 18 max(1, intval($_GET['p'])), -
/var/www/www.jsjhdz.com/dayrui/System/Extend/Run.php : 148 — Phpcmf\Controllers\Home->index ()
141 'value' => $value 142 ]); 143 144 } 145 } 146 } 147 148 $app->$method(); 149 150 if (CI_DEBUG) { 151 $tool = new \CodeIgniter\Debug\Toolbar(config(\Config\Toolbar::class)); 152 $tool->prepare($this); 153 } 154 155 -
/var/www/www.jsjhdz.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 /var/www/www.jsjhdz.com/dayrui/Fcms/Init.php — require()
-
require /var/www/www.jsjhdz.com/public/index.php — require()