在我的PHP页面中,根据页面是在移动浏览器还是桌面浏览器下运行,我应该显示两种不同的文本内容。有没有办法在PHP中执行此控件?
这里有一个非常好的PHP库,用于检测移动客户端使用它,仅显示移动内容非常容易:
include 'Mobile_Detect.php'; $detect = new Mobile_Detect(); // Check for any mobile device. if ($detect->isMobile()){ // mobile content } else { // other content for desktops }