php開發筆記-windows-thinkphp開發環境搭建 php
http://www.thinkphp.cn/down.html html
ThinkPHP3.1.3完整版 web
安裝好appserv或者lanmp其它php開發環境.thinkphp
複製完整包,解壓到你的webserver 目錄 如:wwwwindows
<?php
define('APP_NAME','Index');//項目名稱
define('APP_PATH','./Index/');//項目路徑
define('RUNTIME_PATH',APP_PATH.'Temp/');//定義runtime目錄
require './ThinkPHP/ThinkPHP.php'; app
?> 框架
http://localhost/gsb/index.php函數
顯示以下結果ui
歡迎使用 ThinkPHP!this
Index 文件夾是前面配置好了的.
Temp Runtime文件,前面配置好了的.
打開Index目錄下面的Lib/Action/IndexAction.class.php
刪除$this->show('''............
添加echo 'hello ThinkPHP';
代碼結構以下所示
public function index(){
echo 'hello ThinkPHP';
}
http://localhost/gsb/index.php
輸出結果爲:hello ThinkPHP;