Data.php 237 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <?php defined('BASEPATH') OR exit('No direct script access allowed'); class Data extends CI_Controller { /** * 控制台默认页面 */ public function index() { $this->load->view('data/index'); } }