|
Posted by NC on 10/09/48 11:38
Allerdyce.John@gmail.com wrote:
>
> Is there an easy way in PHP which send outs different content
> depends on User Agent String value?
Yes. There is a superglobal variable $_SERVER['HTTP_USER_AGENT']
> If yes, is there an example/documentation?
Here is the documentation on the subject in its entirety:
'HTTP_USER_AGENT'
Contents of the User-Agent: header from the current request,
if there is one. This is a string denoting the user agent being
which is accessing the page. A typical example is: Mozilla/4.5
[en] (X11; U; Linux 2.2.9 i586). Among other things, you can
use this value with get_browser() to tailor your page's output
to the capabilities of the user agent.
Source:
http://www.php.net/manual/en/reserved.variables.php#reserved.variables.server
Cheers,
NC
Navigation:
[Reply to this message]
|