php 移动端跳转
时间: 2023-07-20 12:15:05 浏览: 112
如果你想要实现 PHP 页面在移动端跳转到另外一个页面,可以使用以下代码:
```php
<?php
$is_mobile = false;
// 判断是否为移动端访问
if (isset($_SERVER['HTTP_USER_AGENT'])) {
$user_agent = strtolower($_SERVER['HTTP_USER_AGENT']);
$is_mobile = (strpos($user_agent, 'iphone') !== false) ||
(strpos($user_agent, 'android') !== false) ||
(strpos($user_agent, 'ipad') !== false);
}
// 如果是移动端访问,则跳转到另外一个页面
if ($is_mobile) {
header("Location: http://yourmobileurl.com");
exit;
}
?>
```
在以上代码中,我们首先判断用户访问的设备是否为移动端,如果是,则使用 `header()` 函数进行跳转,跳转到指定的移动端页面。如果不是,则不进行跳转,继续访问当前页面。
阅读全文