Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7248963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T22:12:57+00:00 2026-05-28T22:12:57+00:00

I have a feeling its due to the differences in PHP version installed. The

  • 0

I have a feeling its due to the differences in PHP version installed. The server that doesn’t properly execute the code is running PHP Version 4.3.9.

Here is the section of code that doesn’t work.

// Function to find browser name
function getBrowser() { 
    $u_agent = $_SERVER['HTTP_USER_AGENT']; 
    $bname = 'Unknown';
    $platform = 'Unknown';
    $version= "";

    //First get the platform?
    if (preg_match('/linux/i', $u_agent)) {
        $platform = 'Linux';
    }
    elseif (preg_match('/macintosh|mac os x/i', $u_agent)) {
        $platform = 'Mac';
    }
    elseif (preg_match('/windows|win32/i', $u_agent)) {
        $platform = 'Windows';
    }

    // Next get the name of the useragent yes seperately and for good reason
    if(preg_match('/MSIE/i',$u_agent) && !preg_match('/Opera/i',$u_agent)) 
    { 
        $bname = 'Internet Explorer'; 
        $ub = "MSIE"; 
    } 
    elseif(preg_match('/Firefox/i',$u_agent)) 
    { 
        $bname = 'Mozilla Firefox'; 
        $ub = "Firefox"; 
    } 
    elseif(preg_match('/Chrome/i',$u_agent)) 
    { 
        $bname = 'Google Chrome'; 
        $ub = "Chrome"; 
    } 
    elseif(preg_match('/Safari/i',$u_agent)) 
    { 
        $bname = 'Apple Safari'; 
        $ub = "Safari"; 
    } 
    elseif(preg_match('/Opera/i',$u_agent)) 
    { 
        $bname = 'Opera'; 
        $ub = "Opera"; 
    } 
    elseif(preg_match('/Netscape/i',$u_agent)) 
    { 
        $bname = 'Netscape'; 
        $ub = "Netscape"; 
    } 
    elseif(preg_match('/Android/i',$u_agent)) 
    { 
        $bname = 'Android'; 
        $ub = "Android"; 
    }
    elseif(preg_match('/iPad/i',$u_agent)) 
    { 
        $bname = 'iPad'; 
        $ub = "iPad"; 
    } 
    elseif(preg_match('/iPhone/i',$u_agent)) 
    { 
        $bname = 'iPhone'; 
        $ub = "iPhone"; 
    } 
    elseif(preg_match('/BlackBerry/i',$u_agent)) 
    { 
        $bname = 'BlackBerry'; 
        $ub = "BlackBerry"; 
    } 
    // finally get the correct version number
    $known = array('Version', $ub, 'other');
    $pattern = '#(?<browser>' . join('|', $known) .
    ')[/ ]+(?<version>[0-9.|a-zA-Z.]*)#';
    if (!preg_match_all($pattern, $u_agent, $matches)) {
        // we have no matching number just continue
    }

    // see how many we have
    $i = count($matches['browser']);
    if ($i != 1) {
        //we will have two since we are not using 'other' argument yet
        //see if version is before or after the name
        if (strripos($u_agent,"Version") < strripos($u_agent,$ub)){
            $version= $matches['version'][0];
        }
        else {
            $version= $matches['version'][1];
        }
    }
    else {
        $version= $matches['version'][0];
    }

    // check if we have a number
    if ($version==null || $version=="") {$version="?";}

    return array(
        'userAgent' => $u_agent,
        'name'      => $bname,
        'version'   => $version,
        'platform'  => $platform,
        'pattern'    => $pattern
    );
} 

// now try it
$ua=getBrowser();
// Make browser and variables readable
$browser = $ua['name'] . " v" . $ua['version'];
$user_agent = $ua['userAgent'];

edit: Clarification, here are the outputted error messages (thanks for the heads up)

Warning: Compilation failed: unrecognized character after (?< at offset 3 in /var/www/vhosts/staging.xxxxxxxxx.com/httpdocs/feedback/feedback-accept.php on line 150

Notice: Undefined index: browser in /var/www/vhosts/staging.xxxxxxxxx.com/httpdocs/feedback/feedback-accept.php on line 155

Fatal error: Call to undefined function: strripos() in /var/www/vhosts/staging.xxxxxxxxx.com/httpdocs/feedback/feedback-accept.php on line 159

Thanks for the help you guys the information and advice has been excellent.

Here is the phpinfo() of the server the script doesn’t work on

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T22:12:57+00:00Added an answer on May 28, 2026 at 10:12 pm

    Without seeing the actual error is pretty hard, but I guess that the culprit is strripos(), which is available only on PHP > 5

    Edit after your update: I guessed right. And, incidentally, while looking on here, I found this:

    Fatal error: Call to undefined function: strripos()

    which has a code veeery similar to yours and an accepted solution, you might refer to that SO question then (be sure to credit the answerers there if you find it useful)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a feeling that there must be client-server synchronization patterns out there. But
Good times for everyone. I have such problem, feeling that it's simple, but due
I have the feeling that is easy to find samples, tutorials and simple examples
I have a feeling that I already know the answer to this one, but
I have the feeling that Flash -based ( or Silverlight -based) websites are generally
I have a feeling that this query is pretty easy to construct, I just
I have a feeling this is due to some sort of rendering optimization or
I have a feeling that I'm missing something simple here but can't seem to
A search query returned this error. I have a feeling its because the in
I have a basic web server that I generated from the mochiweb framework. To

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.