LewaimaiDomain.php 629 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. class LewaimaiDomain
  3. {
  4. /*
  5. * 获取微信前端域名,格式为https://wap.lewaimai.com这种,最后没有"/"
  6. * 这个用于front项目自己获取自己的域名时
  7. */
  8. public static function GetWapDomain()
  9. {
  10. return "https://" . Yii::app()->request->getServerName();
  11. }
  12. /*
  13. * 主要用于后台获取前端域名展示
  14. */
  15. public static function GetConstWapDomain()
  16. {
  17. if (LEWAIMAI_DEBUG)
  18. {
  19. return "https://wap-test.lewaimai.com";
  20. }
  21. else
  22. {
  23. return "https://wap.lewaimai.com";
  24. }
  25. }
  26. }