下載yii:打開yii官網,找到你要下載的內容(建議學習:yii框架)
再安裝php環境,這裡列出我用的PHPstudy.圖中介紹安裝
下載完的yii放在www資料夾下
開啟\framework下面yiic.bat執行這個檔案所建立的應用,或是在www目錄下新建index.php 其內容:
<?php // change the following paths if necessary $yii=dirname(__FILE__).'/framework/yii.php'; $config=dirname(__FILE__).'/protected/config/main.php'; // remove the following line when in production mode // defined('YII_DEBUG') or define('YII_DEBUG',true); require_once($yii); Yii::createWebApplication($config)->run(); ?>
載入框架
開啟:http://localhost/ 本地瀏覽就可以看到你安裝成功了。
以上是檢查yii是否安裝成功的詳細內容。更多資訊請關注PHP中文網其他相關文章!