<?php
date_default_timezone_set("Asia/Chongqing");
// change the following paths if necessary
$yii=dirname(__FILE__).'/../yii/framework/yii.php';
$app=dirname(__FILE__).'/protected/components/MyApplication.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);
require_once($app);
$app = new WeikeApplication($config);
$app->run();
本文介绍了一个使用PHP搭建的应用程序的配置及运行流程,包括设置时区、引入Yii框架、配置应用程序及运行程序等步骤。
1449

被折叠的 条评论
为什么被折叠?



