在yii中定义全局变量最好的地方是入口脚本处。也就是web目录中的index.php文件
比如我们在defined('YII_ENV') or define('YII_ENV', 'dev');后写上
defined('ZYL_HEHE') or define('ZYL_HEHE','zhyoulun-hehe');
并在我们教程(1)中建立的views/zhyoulun/helloworld.php文件里写上
<?php
echo 'hello world!'; //全局变量
echo constant('ZYL_HEHE');
?>
訪问网址http://localhost/basic/web/index.php?r=zhyoulun/helloworld
參考:http://www.yiichina.com/guide/2/structure-entry-scripts
转载请注明出处:http://blog.csdn.net/zhyoulun/article/details/40458355