??? ??? ??
請(qǐng)加QQ群374224296獲取視頻所需素材!
一.thinkphp
???? ??? ??? ?? ?? ??? ?????.
2. ???? ??
Route ?? http://localhost/shop3/Index.php/Admin/index ????
???? ??
shop3ApplicationAdminController ?? ??
In dex???? .class.php
<?php namespace Admin\Controller; use Think\Controller; class IndexController extends Controller { public function index() { $this->display(); } }
ApplicationAdminView ??? Index ??? ?????
????? ???? index.html? ????. (???? ??????? ?? ??? ???)
http://localhost/shop3/Index.php /Admin/index ??? ?? ??? ?? ????? ?????
??? ?? ??? ??? ???? ??? ?????.
shop3 ?? ???? ??? ?? ??
ApplicationAdminViewIndexindex.html <?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// 應(yīng)用入口文件
// 檢測(cè)PHP環(huán)境
if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
// 開啟調(diào)試模式 建議開發(fā)階段開啟 部署階段注釋或者設(shè)為false
define('APP_DEBUG',True);
// 定義應(yīng)用目錄
define('APP_PATH','./Application/');
//站點(diǎn)路徑
define('SITE_URL','http://localhost/shop3/');
// 引入ThinkPHP入口文件
require './ThinkPHP/ThinkPHP.php';
// 親^_^ 后面不需要任何代碼了 就是如此簡(jiǎn)單
??? ?? ??