关于应用实例中的index.php [ 新手入门 ]
<?php
// change the following paths if necessary
$yii=dirname(__FILE__).'/../yii/framework/yii.php';
$config=dirname(__FILE__).'/protected/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();
以上代码是通过yiic自动生成webapp时候生成的。 问题一:dirname(FILE)应该 会返回当前的文件所在的目录吧。我通过软件跟踪参数,发现$yii会被赋值为D:\www\myweb/../yii/framework/yii.php 所得到的$yii可以表示yii目录的位置在www目录下,那么如果yii目录在D盘根目录下,路径的表达式应该是什么样的呢? 用dirname(FILE)写路径表达式时,'/../',/等表示什么意义? 问题二:此index.php文件结尾缺少 ?〉 不会影响程序运行么?
共 5 条回复
圆般
注册时间:2011-03-09
最后登录:1970-01-01
在线时长:0小时0分
最后登录:1970-01-01
在线时长:0小时0分
- 粉丝3
- 金钱590
- 威望0
- 积分590