gpt4 book ai didi

php - 检测低于iOS 8 PHP的iOS版本

转载 作者:行者123 更新时间:2023-12-01 18:58:00 24 4
gpt4 key购买 nike

如果搜索了一段时间,但找不到任何好的解决方案。我需要检测iOS版本,以便可以决定是否显示网站的某些部分。此外,此内容应在任何非MobileSafari浏览器上显示。

所以基本上:
如果iOS和版本 其他节目内容

最佳答案

非常感谢@ Lucas1和@Daan我提出了这个:)

<?php 
if(strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone') || strpos($_SERVER['HTTP_USER_AGENT'],'iPad' ) || strpos($_SERVER['HTTP_USER_AGENT'], 'iPod' ) !== false){
if (strpos($_SERVER['HTTP_USER_AGENT'], 'OS 8_0') !== false) {
echo "content here on ios";
}
else{echo "sorry no content for you";}
}

else {
echo "content here";
}?>

关于php - 检测低于iOS 8 PHP的iOS版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25325499/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com