php開發筆記-windows-linux-thinkphp開發環境搭建

文章來自個人博客:https://www.lwxshow.com/dev/php/thinkphp-configuration-environment.html

使用最新版本的3.1.3版本

php開發筆記-windows-thinkphp開發環境搭建 php

1.下載ThinkPHP框架

http://www.thinkphp.cn/down.html html

ThinkPHP3.1.3完整版 web

2.安裝配置

安裝好appserv或者lanmp其它php開發環境.thinkphp

複製完整包,解壓到你的webserver 目錄 如:wwwwindows

3.安裝ThinkPHP

3.1新建index.php

<?php
define('APP_NAME','Index');//項目名稱
define('APP_PATH','./Index/');//項目路徑
define('RUNTIME_PATH',APP_PATH.'Temp/');//定義runtime目錄
require './ThinkPHP/ThinkPHP.php'; app

?> 框架

3.2輸入你的訪問路徑

http://localhost/gsb/index.php函數

顯示以下結果ui

歡迎使用 ThinkPHPthis

3.3生成 的Thinkphp目錄結構以下.

Index 文件夾是前面配置好了的.

Temp Runtime文件,前面配置好了的.

 

 4.首頁顯示 hello,ThinkPHP

4.1編輯IndexAction.class.php

打開Index目錄下面的Lib/Action/IndexAction.class.php

4.2編輯 index函數

刪除$this->show('''............

添加echo 'hello ThinkPHP';

代碼結構以下所示

public function index(){

echo 'hello ThinkPHP';
}

4.3輸入地址

http://localhost/gsb/index.php

輸出結果爲:hello ThinkPHP;

相關文章
相關標籤/搜索