先点击http://www.yiichina.com/download/,下载一份yii源代码。
下载完毕,将文件解压缩到工程目录yii下。
打开/yii/demos/blog/index.php。下面就开始我们的源代码阅读之旅。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();