| 12345678910111213141516171819202122232425262728 |
- <?php
- class LewaimaiDomain
- {
- /*
- * 获取微信前端域名,格式为https://wap.lewaimai.com这种,最后没有"/"
- * 这个用于front项目自己获取自己的域名时
- */
- public static function GetWapDomain()
- {
- return "https://" . Yii::app()->request->getServerName();
- }
-
- /*
- * 主要用于后台获取前端域名展示
- */
- public static function GetConstWapDomain()
- {
- if (LEWAIMAI_DEBUG)
- {
- return "https://wap-test.lewaimai.com";
- }
- else
- {
- return "https://wap.lewaimai.com";
- }
- }
- }
|