在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