ÿØÿà JFIF H H ÿÛ C GIF89;
| System: Linux srv913213 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 Current Path : /var/www/yapwebtv.com/app/Helpers/ |
| Current File : /var/www/yapwebtv.com/app/Helpers/UserAgentHelper.php |
<?php
if (!function_exists('UserAgentBrowser')) {
/**
* description
*
* @param
* @return
*/
function UserAgentBrowser($purpose)
{
$bname = '';
if(preg_match('/MSIE/i',$purpose) && !preg_match('/Opera/i',$purpose))
{
$bname = 'Internet Explorer';
$ub = "MSIE";
}
elseif(preg_match('/Firefox/i',$purpose))
{
$bname = 'Mozilla Firefox';
$ub = "Firefox";
}
elseif(preg_match('/Chrome/i',$purpose))
{
$bname = 'Google Chrome';
$ub = "Chrome";
}
elseif(preg_match('/Safari/i',$purpose))
{
$bname = 'Apple Safari';
$ub = "Safari";
}
elseif(preg_match('/Opera/i',$purpose))
{
$bname = 'Opera';
$ub = "Opera";
}
elseif(preg_match('/Netscape/i',$purpose))
{
$bname = 'Netscape';
$ub = "Netscape";
}
return $bname ?? 'Internet Explorer';
}
}