ThinkPHP的相關總結

來源:互聯網
上載者:User
什麼是ThinkPHP?

ThinkPHP是一個免費的、開源的、快速的、基於MVC模式的、物件導向的輕量級開發架構。

ThinkPHP的擷取

http://www.thinkphp.cn/

ThinkPHP項目搭建教程

http://www.icoolxue.com/play/2284

做法:

1.安裝wamp,在www檔案夾中建立ThinkPHP檔案夾2.下載ThinkPHP核心檔案包3.將核心檔案包中的ThinkPHP檔案夾複製到wamp的www檔案夾的ThinkPHP檔案夾中4.在www檔案夾的ThinkPHP檔案夾中建立入口檔案index.php和admin.php5.訪問www檔案夾的ThinkPHP檔案夾,自動建立Home檔案夾和Admin檔案夾6.在www檔案夾的ThinkPHP檔案夾中建立Public檔案夾,存放Home和Admin的共同類檔案

入口檔案:
1.Index.php<前台入口>

<?php    //1.確定應用程式名稱 Home    define('APP_NAME','Home');    //2.確定應用路徑    define('APP_PATH','./Home/');    //3.引用核心檔案    require './ThinkPHP/ThinkPHP.php';?>

2.admin.php<後台入口>

<?php    //1.確定應用程式名稱 Admin    define('APP_NAME','Admin');    //2.確定應用路徑    define('APP_PATH','./Admin/');    //3.引用核心檔案    require './ThinkPHP/ThinkPHP.php';?>

什麼是ThinkPHP?

ThinkPHP是一個免費的、開源的、快速的、基於MVC模式的、物件導向的輕量級開發架構。

ThinkPHP的擷取

http://www.thinkphp.cn/

ThinkPHP項目搭建教程

http://www.icoolxue.com/play/2284

做法:

1.安裝wamp,在www檔案夾中建立ThinkPHP檔案夾2.下載ThinkPHP核心檔案包3.將核心檔案包中的ThinkPHP檔案夾複製到wamp的www檔案夾的ThinkPHP檔案夾中4.在www檔案夾的ThinkPHP檔案夾中建立入口檔案index.php和admin.php5.訪問www檔案夾的ThinkPHP檔案夾,自動建立Home檔案夾和Admin檔案夾6.在www檔案夾的ThinkPHP檔案夾中建立Public檔案夾,存放Home和Admin的共同類檔案

入口檔案:
1.Index.php<前台入口>

<?php    //1.確定應用程式名稱 Home    define('APP_NAME','Home');    //2.確定應用路徑    define('APP_PATH','./Home/');    //3.引用核心檔案    require './ThinkPHP/ThinkPHP.php';?>

2.admin.php<後台入口>

<?php    //1.確定應用程式名稱 Admin    define('APP_NAME','Admin');    //2.確定應用路徑    define('APP_PATH','./Admin/');    //3.引用核心檔案    require './ThinkPHP/ThinkPHP.php';?>

本文講解了ThinkPHP的相關總結,更多相關內容請關注php中文網。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.