在Yii2中使用子域

时间:2015-07-16 11:26:49

标签: url subdomain yii2

获取子域信息的最佳方法是什么( http:// s1 s2 .site.com )?

是否有一种快速方法可以创建另一个子域的URL http:// s1 s2 .site.com => http:// s3 s4 .site.com

2 个答案:

答案 0 :(得分:1)

尝试使用PHP解析网址

docs

explode

以及其他很多

最终//LOADED MY XML jobdetails.group = TM_item.Group_xml.ToString(); var xDoc = XDocument.Parse(jobdetails.group); //jobdetails is a model object var newxDoc = new XElement("Root", xDoc.Root .Elements() .OrderBy(x => (string)x.Attribute("name")) .Select(n => new { GroupName = n.Attribute("name").Value, status = n.Element("Status").Value }) ); xml = newxDoc.ToString(); (php函数)你需要分解的部分

答案 1 :(得分:1)

我不知道这是否是最佳方式,但我使用以下代码:

LOG