这段代码应该工作吗?事实上,它没有。我不知道为什么。
<?php
if(isset($_SERVER['HTTP_USER_AGENT']))
{
$mobile_agents = '!(tablet|pad|mobile|phone|symbian|android|ipod|ios|blackberry|webos)!i';
if(preg_match($mobile_agents, $_SERVER['HTTP_USER_AGENT']))
{
echo "<link rel='stylesheet' href='<?php echo $this->baseurl ?>/templates/css/firefox.css' type='text/css' />";
}
}
?>
谢谢你。