-
/www/wwwroot/new.cnphedu.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/new.cnphedu.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/new.cnphedu.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/new.cnphedu.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/new.cnphedu.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/new.cnphedu.com/dayrui/App/Linkage/Controllers/Home.php : 130 — Phpcmf\Model->getAll ()
123 if (!empty($modules)) { 124 $count = count($modules); 125 if (!empty($get['schoolid']) && $count < 2) { 126 $all_data[$val['module']]['fieldname'] .= 'school=' . $get['schoolid'] . ' and '; 127 } 128 foreach ($all_data as $key => $val) { 129 $where = rtrim($val['fieldname'], 'and '); 130 $data = \Phpcmf\Service::M()->table(SITE_ID . '_' . $val['table'])->where($where)->getAll(); 131 $all_data[$key]['where'] = $where; 132 $all_data[$key]['data'] = $data; 133 $last_data = end($data); 134 foreach ($data as $val2) { 135 if (in_array($val2['school'], $val2) && !in_array($val2['school'], $schoolid)) { 136 $all_data[$key]['schoolid'][] = $schoolid[] = $val2['school']; 137 } -
/www/wwwroot/new.cnphedu.com/dayrui/System/Extend/Run.php : 149 — Phpcmf\Controllers\Home->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/new.cnphedu.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/new.cnphedu.com/dayrui/Fcms/Init.php — require()
-
require /www/wwwroot/new.cnphedu.com/public/index.php — require()