2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2005-09-30 08:30:43 +00:00
|
|
|
<!-- $Revision: 1.14 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/misc.xml, last change in rev 1.2 -->
|
|
|
|
<refentry id="function.get-browser">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>get_browser</refname>
|
|
|
|
<refpurpose>
|
|
|
|
Tells what the user's browser is capable of
|
|
|
|
</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
2004-10-03 03:49:16 +00:00
|
|
|
<methodsynopsis>
|
2005-06-23 16:53:27 +00:00
|
|
|
<type>mixed</type><methodname>get_browser</methodname>
|
2004-10-03 03:49:16 +00:00
|
|
|
<methodparam choice="opt"><type>string</type><parameter>user_agent</parameter></methodparam>
|
|
|
|
<methodparam choice="opt"><type>bool</type><parameter>return_array</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2002-04-15 00:12:54 +00:00
|
|
|
<function>get_browser</function> attempts to determine the
|
|
|
|
capabilities of the user's browser. This is done by looking up
|
2002-12-30 04:57:52 +00:00
|
|
|
the browser's information in the <filename>browscap.ini</filename>
|
2004-10-03 03:49:16 +00:00
|
|
|
file.
|
|
|
|
</para>
|
|
|
|
<para>
|
2005-09-30 08:30:43 +00:00
|
|
|
By default, the value of HTTP User-Agent header is
|
2002-12-30 04:57:52 +00:00
|
|
|
used; however, you can alter this (i.e., look up another browser's
|
2004-10-03 03:49:16 +00:00
|
|
|
info) by passing the optional <parameter>user_agent</parameter> parameter to
|
|
|
|
<function>get_browser</function>. You can bypass <parameter>user_agent</parameter>
|
|
|
|
parameter with &null; value.
|
|
|
|
</para>
|
2002-04-15 00:12:54 +00:00
|
|
|
<simpara>
|
2002-12-30 16:05:14 +00:00
|
|
|
The information is returned in an <type>object</type>, which will contain
|
2002-04-15 00:12:54 +00:00
|
|
|
various data elements representing, for instance, the browser's
|
2003-01-18 23:06:12 +00:00
|
|
|
major and minor version numbers and ID string; &true;/&false; values
|
2002-04-15 00:12:54 +00:00
|
|
|
for features such as frames, JavaScript, and cookies; and so
|
|
|
|
forth.
|
|
|
|
</simpara>
|
|
|
|
<simpara>
|
2004-10-03 03:49:16 +00:00
|
|
|
As of PHP 4.3.2, if the optional parameter
|
|
|
|
<parameter>return_array</parameter> is &true;, this function will return an
|
|
|
|
<type>array</type> instead of an <type>object</type>.
|
2002-04-15 00:12:54 +00:00
|
|
|
</simpara>
|
|
|
|
<para>
|
|
|
|
<example>
|
2004-10-03 03:49:16 +00:00
|
|
|
<title>Listing all information about the users browser</title>
|
2002-04-15 00:12:54 +00:00
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
2004-10-03 03:49:16 +00:00
|
|
|
echo $_SERVER['HTTP_USER_AGENT'] . "\n\n";
|
2002-12-30 04:57:52 +00:00
|
|
|
|
2004-10-03 03:49:16 +00:00
|
|
|
$browser = get_browser(null, true);
|
|
|
|
print_r($browser);
|
2002-04-15 00:12:54 +00:00
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
2004-10-03 03:49:16 +00:00
|
|
|
&example.outputs.similar;
|
|
|
|
<screen>
|
2002-04-15 00:12:54 +00:00
|
|
|
<![CDATA[
|
2004-10-03 03:49:16 +00:00
|
|
|
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040803 Firefox/0.9.3
|
|
|
|
|
|
|
|
Array
|
|
|
|
(
|
|
|
|
[browser_name_regex] => ^mozilla/5\.0 (windows; .; windows nt 5\.1; .*rv:.*) gecko/.* firefox/0\.9.*$
|
|
|
|
[browser_name_pattern] => Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:*) Gecko/* Firefox/0.9*
|
|
|
|
[parent] => Firefox 0.9
|
|
|
|
[platform] => WinXP
|
|
|
|
[browser] => Firefox
|
|
|
|
[version] => 0.9
|
|
|
|
[majorver] => 0
|
|
|
|
[minorver] => 9
|
|
|
|
[css] => 2
|
|
|
|
[frames] => 1
|
|
|
|
[iframes] => 1
|
|
|
|
[tables] => 1
|
|
|
|
[cookies] => 1
|
|
|
|
[backgroundsounds] =>
|
|
|
|
[vbscript] =>
|
|
|
|
[javascript] => 1
|
|
|
|
[javaapplets] => 1
|
|
|
|
[activexcontrols] =>
|
|
|
|
[cdf] =>
|
|
|
|
[aol] =>
|
|
|
|
[beta] => 1
|
|
|
|
[win16] =>
|
|
|
|
[crawler] =>
|
|
|
|
[stripper] =>
|
|
|
|
[wap] =>
|
|
|
|
[netclr] =>
|
|
|
|
)
|
2002-04-15 00:12:54 +00:00
|
|
|
]]>
|
2003-06-21 10:28:05 +00:00
|
|
|
</screen>
|
|
|
|
</example>
|
|
|
|
</para>
|
2004-10-03 03:49:16 +00:00
|
|
|
<para>
|
2003-06-21 10:28:05 +00:00
|
|
|
The <literal>cookies</literal> value simply means that the browser
|
|
|
|
itself is capable of accepting cookies and does not mean the user has
|
2004-10-03 03:49:16 +00:00
|
|
|
enabled the browser to accept cookies or not. The only way to test if
|
2003-06-21 10:28:05 +00:00
|
|
|
cookies are accepted is to set one with <function>setcookie</function>,
|
|
|
|
reload, and check for the value.
|
2004-10-03 03:49:16 +00:00
|
|
|
</para>
|
2002-12-30 16:05:14 +00:00
|
|
|
<note>
|
2004-10-03 03:49:16 +00:00
|
|
|
<para>
|
|
|
|
In order for this to work, your <link linkend="ini.browscap">browscap</link>
|
|
|
|
configuration setting in &php.ini; must point to the correct location of the
|
|
|
|
<filename>browscap.ini</filename> file on your system.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<filename>browscap.ini</filename> is not bundled with PHP, but you
|
|
|
|
may find an <ulink url="&url.browscap.download;">up-to-date php_browscap.ini</ulink>
|
|
|
|
file here.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
While <filename>browscap.ini</filename> contains information on
|
|
|
|
many browsers, it relies on user updates to keep the database
|
|
|
|
current. The format of the file is fairly self-explanatory.
|
|
|
|
</para>
|
2002-12-30 16:05:14 +00:00
|
|
|
</note>
|
2002-04-15 00:12:54 +00:00
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|