2
ismobile
is_mobile
SYNOPSIS
is_mobile($agent=false)
DESCRIPTION
CODE
- function is_mobile($agent=false) {
- if (!$agent) {
- require_once 'useragent.php';
- $agent=user_agent();
- }
- return $agent and preg_match('/android|webos|iphone|ipad|ipod|iemobile|blackberry|opera mini/i', $agent);
- }
Comments