yii1.0设置常量的方法:首先新建“constants.php”;然后通过方法“define('CL', 'https://www.baidu.com/');”定义常量;接着把常量引入系统;最后在系统的任意位置调用系统常量即可。
yii 设置系统常量
推荐:《yii教程》
1,在protectded/config/下新建constants.php
2,在constants.php里面定义常量 define('CL', 'https://www.baidu.com/');//常量名,常量内容
3,把常量引入系统:在入口index.php文件里引入系统,require_once(dirname(__FILE__).'/protected/config/constants.php');
4,在系统的任意位置调用系统常量:
Atas ialah kandungan terperinci yii1.0怎么设置常量. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!