关于在YII project 里加入框架核心代码 [ 新手入门 ]
如果,在protected下面建一个liarbray的文件夹,并把framework 放到其中,在Index.php修改指向代码
$yii=dirname(__FILE__).'/protected/library/framework/yii.php';
这样会不会因为protected不能直接访问而受限制
共 14 条回复
-
index.php 代码
<?php // change the following paths if necessary $yii=dirname(__FILE__).'/protected/framework/yii.php'; $config=dirname(__FILE__).'/protected/frontend/config/main.php'; // remove the following lines when in production mode defined('YII_DEBUG') or define('YII_DEBUG',true); // specify how many levels of call stack should be shown in each log message defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); require_once($yii); Yii::createWebApplication($config)->run();
落叶 江苏南京
注册时间:2011-03-29
最后登录:1970-01-01
在线时长:0小时0分
最后登录:1970-01-01
在线时长:0小时0分
- 粉丝8
- 金钱1190
- 威望10
- 积分1290