system/function.inc.php 搜索function is_mobile()
将if (preg_match('/playstation/i', $user_agent) OR preg_match('/ipad/i', $user_agent) OR preg_match('/ucweb/i', $user_agent) OR preg_match('/ucbrowser/i', $user_agent))
中的 OR preg_match('/ucweb/i', $user_agent) OR preg_match('/ucbrowser/i', $user_agent)
剪切到下面的一行中
if (preg_match('/iemobile/i', $user_agent) OR preg_match('/mobile\ssafari/i', $user_agent) OR preg_match('/iphone\sos/i', $user_agent))
最终代码是
if (preg_match('/iemobile/i', $user_agent) OR preg_match('/mobile\ssafari/i', $user_agent) OR preg_match('/iphone\sos/i', $user_agent) OR preg_match('/ucweb/i', $user_agent) OR preg_match('/ucbrowser/i', $user_agent))
总之就是把ucweb和ucbrowser的判断给变成true
然后就可以用了,使用最新版9.1的uc浏览器浏览起来没有什么问题,就是有点费流量,建议模仿知乎的手机版。
阅读全文
收起全文