|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-07-08 16:44 UTC] mikx at mikx dot de
[2003-07-08 18:44 UTC] mikx at mikx dot de
[2003-07-09 06:12 UTC] alexandre dot alapetite at risoe dot dk
[2003-07-09 07:33 UTC] sniper@php.net
[2003-07-09 13:53 UTC] jay@php.net
[2003-07-09 14:17 UTC] sniper@php.net
[2003-07-09 14:20 UTC] sniper@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 04:00:02 2025 UTC |
Description: ------------ The object returned from get_browser() function does not contain the platform information as described in the documentation and as usual in prior versions. It's more a missing feature than a bug, but it brings some old scripts relying on this feature into trouble. The browscap.ini is the latest "official" one from Gary Keith. Reproduce code: --------------- $browser = get_browser(); foreach ($browser as $name => $value) { print "<b>$name</b> $value <br />\n"; }