這篇文章主要介紹了CI(CodeIgniter)框架視圖中加載視圖的方法,結合實例形式分析了CodeIgniter框架視圖加載相關操作技巧,需要的朋友可以參考下
本文實例講述了CI(CodeIgniter)框架視圖中載入視圖的方法。分享給大家供大家參考,具體如下:
CI做為php的一個輕量級框架,其本身俱備許多優點,在此我重點想說的是視圖中載入視圖。
1:在Application\config\database.php檔案中設定好CodeIgniter 資料庫變數之後,緊接著在Application\config\config.php檔案中設定基礎 URL。例如我的基礎URL 是:http://localhost/codeigniter/
2:接下來建立預設的控制器與視圖,建立控制器的目錄為:application\controllers\ 資料夾內,建立一個名為student.php 的控制器。並在 application\config\routes.php 內設定為預設控制器。
Controller->student.php
class Student extends CI_controller{ public function __construct(){ parent::__construct(); } public function index(){ $date['title']="Classroom:Home Page"; $date['headline']="Welcome to the Classroom Management System"; $date['include']="Student_index"; $this->load->view('template',$date); } }
views->template.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <title><?php echo $title;?></title> </head> <body> <h1><?php echo $headline;?></h1> <?php $this->load->view($include);?> </body> </html>
view->student_index.php
Congratulations.Your initial setup is complate!
如果你造訪:http://localhost/CodeIgniter/index.php /student/index
the result will output:
#Welcome to the Classroom Management System Congratulations.Your initial setup is complate!
以上就是本文的全部內容,希望對大家的學習有幫助,更多相關內容請關注PHP中文網!
相關推薦:
#
以上是關於CI框架視圖中載入視圖的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!