คอมพิวเตอร์และอินเตอร์เน็ต,บรรยายวิชาการ,วิจัย,ศึกษากุรอาน,E-Book

วันพฤหัสบดีที่ 20 เมษายน พ.ศ. 2566

PHP Mobile Detection

 

PHP Mobile Detection

<?php //detect a mobile device in PHP

// Create the function, so you can use it

function isMobile() {

return   preg_match("/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|

                                          hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i",  

                                         $_SERVER["HTTP_USER_AGENT"]);

}

// If the user is on a mobile device

if(isMobile()){

$x1='http://223.27.246.236/q-office/mobile/index.php';

}else{

   $x1='index.php';

}

?>


ไม่มีความคิดเห็น: