0

我刚刚遇到 php-mobile-detect,我想将它添加到我的网站。到目前为止,我当前的代码是。

<?php
include("Mobile_Detect.php");
$detect = new Mobile_Detect();
?>
<?php if($detect->isiPad()) {
echo '<link rel="stylesheet" href="test.css" type="text/css">';     
}
?>

当我在 ipad 上显示 css 时,这工作正常,现在我想做的是将所有 iPhone、android 设备、黑莓等添加到一个 css 并将任何其他桌面版本添加到另一个 css?

我知道我很近,但我不能完全到达那里。

4

1 回答 1

2

这应该对你有用:

<?php
include("Mobile_Detect.php");
$detect = new Mobile_Detect();

if ($detect->isMobile()) {
    echo 'mobile';
}else{
    echo 'desktop';
}
?>
于 2013-02-19T12:06:11.617 回答