vote up 2 vote down star

Mobile Safari is a very capable browser, and it can handle my website as it is perfectly. However, there are a few elements on my page that could be optimized for browsing using this device; such as serving specific thumbnails that are smaller than the desktop counterparts to help fit more content into the screen.

I would like to know how I can detect Mobile Safari (all versions, preferably) using PHP, so then I can serve a) a specific css file and b) different sized image thumbnails.

flag

6 Answers

vote up 2 vote down check

Compare the user agent string with the one of a Safari Mobile uses:

Safari Mobile User Agent String

link|flag
This link doesn't seem to go to the right place anymore. – Nosredna Jul 14 at 21:36
vote up 0 vote down

Mozilla/5.0 (webOS/1.0; U; en-US) AppleWebKit/525.27.1 (KHTML, like Gecko) Version/1.0 Safari/525.27.1 Pre/1.0 that is the browser for the palm Pre, and the word 'Mobile' is not there.

I am working on making my detect work fully with all newer capable browsers. After looking at the mytouch, G1, Palm Pre, droid and others, (but not all) I am now confident this is workable for all new phones:

if(preg_match("/applewebkit/i", $_SERVER['HTTP_USER_AGENT']) && preg_match("/(mobile|pre)/i", $_SERVER['HTTP_USER_AGENT'])) header("Location: http://simplefoodie.com/iphone/?carryover=".urlencode($_SERVER[REQUEST_URI]));

link|flag
vote up 0 vote down

I have published a new mode to detect devices in any programming language (JSP, PHP, Perl, Python.....), it's called Apache Mobile Filter is an Apache module (http://modules.apache.org/search.php?id=1787) that detect mobile device and also can adapt the images to the screen size of device.

For more info: http://www.idelfuschini.it/it/apache-mobile-filter-v2x.html

link|flag
vote up 0 vote down

For mobile browser detection see http://detectmobilebrowsers.mobi/

link|flag
vote up 1 vote down

Thanks Joe, I read that page and found the WebKit detection library (in JavaScript). I changed the code to suit my needs.

For anyone that's interested, here's my solution.

<?php

/* detect Mobile Safari */

$browserAsString = $_SERVER['HTTP_USER_AGENT'];

if (strstr($browserAsString, " AppleWebKit/") && strstr($browserAsString, " Mobile/"))
{
    $browserIsMobileSafari = true;
}

?>
link|flag
But what if JavaScript is turned off? – Matt Lacey May 22 at 12:00
@Matt - The detection is done server side, you didn't read my post properly - I changed the code to fit my needs, as in finding the strings " AppleWebKit/" and " Mobile/". – different May 27 at 21:22
vote up 3 vote down
$_SERVER['HTTP_USER_AGENT']

That will give you the user-agent string back which you can compare to mobile safari.

p.s. http://wurfl.sourceforge.net/ WURFL may help you determine which UAs you want.

link|flag
DeviceAtlas is another alternative to WURFL – Guido GarcĂ­a Oct 9 '08 at 11:01

Your Answer

Get an OpenID
or

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