Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm interested to know whether the user-agent is "Chrome" at the server end using PHP. Is there a reliable regular expression for parsing out the user-agent string from the request header?

share|improve this question

1 Answer

up vote 13 down vote accepted

Just check $_SERVER['HTTP_USER_AGENT'] for the string 'Chrome'.

if (strpos($_SERVER['HTTP_USER_AGENT'], 'Chrome') !== false)
{
    // User agent is Google Chrome
}
share|improve this answer
1  
Nice one. Using preg_match for detecting Chrome would surely be an overhead. – Ain Tohvri Jun 15 '10 at 18:31
Why do you need the !== false ? wouldn't be easier just if (strpos($_SERVER['HTTP_USER_AGENT'], 'Chrome')) ? – Tuga Aug 19 '11 at 4:49
2  
@Tuga: If the string starts with 'Chrome', strpos() returns 0. Since 0 == false, the if code won't run, but you want it to. The function returns an actual false if the string isn't found, so you have to compare it by type using !== false. This is also why your answer is wrong. – BoltClock Aug 19 '11 at 5:18
And that's why I've deleted it, thanks for the explanation ! – Tuga Aug 19 '11 at 5:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.