本文整理汇总了PHP中Mobile::getMobileUrl方法的典型用法代码示例。如果您正苦于以下问题:PHP Mobile::getMobileUrl方法的具体用法?PHP Mobile::getMobileUrl怎么用?PHP Mobile::getMobileUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mobile
的用法示例。
在下文中一共展示了Mobile::getMobileUrl方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: GetCookie
} else {
$cookie = GetCookie('computer');
$cookie = $cookie ? $cookie : 0;
if ($cookie == 0) {
DropCookie('computer');
}
}
if (Helper_Archive::isMobile() && $cookie == 0) {
//兼容性修复
$uri = $_SERVER["HTTP_X_REWRITE_URL"];
if ($uri == null) {
$uri = $_SERVER["REQUEST_URI"];
}
$currentUrl = 'http://' . $_SERVER['HTTP_HOST'] . $uri;
$model = new Mobile();
$url = $model->getMobileUrl($currentUrl);
header("Location:{$url}");
//跳转到手机页面
exit;
}
}
//站点信息配置表
$sys_child_webid = 0;
$sys_webprefix = Helper_Archive::getSysWebprefix();
if (file_exists(SLINEDATA . '/weblist.php')) {
require_once SLINEDATA . '/weblist.php';
if (!empty($weblist)) {
$url = $_SERVER['HTTP_HOST'];
//当前域名
$uarr = explode('.', $url);
$prefix = $uarr[0];