創建應用目錄文件
我們在web的根目錄(/var/www或者其他地方)創建一個文件夾,命名為helloworld。將下載好的框架解壓並放到該應用目錄下。創建好的目錄結構如下:
在應用目錄下創建入口腳本index.php,它的主要工作是加載框架並啟動應用。代碼如下:
require_once ('../../wind/Wind.php'); Wind::application()->run();
PS:當然也可以同時在index.php中設置錯誤級別,WIND_DEBUG模式等。相關內容後面會介紹
創建IndexController.php
在應用目錄下創建controller/目錄。controller目錄是windframework默認定義的應用控制器存放的目錄,我們也可以通過手動配置的方式來改變應用的訪問路徑。在我們創建的 controller/ 目錄下創建IndexController.php類文件。文件內容如下:
<?php /** * the last known user to change this file in the repository <$LastChangedBy: long.shi $> * @author Qiong Wu [email protected]> * @version $Id: IndexController.php 2806 2011-09-23 03:28:55Z long.shi $ * @package */ class IndexController extends WindController { public function run() { echo 'hello world'; } } ?