php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #64087 PHP5.4.3 print_r not showing array
Submitted: 2013-01-28 00:00 UTC Modified: 2013-10-15 11:54 UTC
Votes:1
Avg. Score:1.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: sainthyoga2003 at gmail dot com Assigned:
Status: No Feedback Package: Documentation problem
PHP Version: 5.4.11 OS: Windows 7 x64
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
45 - 6 = ?
Subscribe to this entry?

 
 [2013-01-28 00:00 UTC] sainthyoga2003 at gmail dot com
Description:
------------
---
From manual page: http://www.php.net/function.get-browser#refsect1-function.get-
browser-examples
---
According with the first example, with print_r in the $navigation var it would 
show the complete array structure but else is now showing anything with the second 
parameter in true.

Test script:
---------------
<?php
echo $_SERVER['HTTP_USER_AGENT'] . "\n\n";

$navegador = get_browser(null, true);
print_r($navegador);
?>

Expected result:
----------------
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
    [cssversion] => 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] =>
)

or info according with my browsers: internet explorer 8, firefox 18, opera 12, 
chrome 24

Actual result:
--------------
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040803 
Firefox/0.9.3

or info according with my browsers: internet explorer 8, firefox 18, opera 12, 
chrome 24

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2013-05-30 17:45 UTC] alberto at tecnosur dot com dot mx
This function will be removed from PHP as is, is deprecated.
 [2013-06-25 06:18 UTC] philip@php.net
-Status: Open +Status: Feedback
 [2013-06-25 06:18 UTC] philip@php.net
Are you seeing a warning in your error log similar to the following?


Warning: get_browser(): browscap ini directive not set in foo.php on line 4


I'm guessing that's the case. And when testing/debugging, try var_dump() instead 
of print_r() so we can see what get_browser() is returning. Please try:

<?php
error_reporting(-1);
ini_set('display_errors', 1);
echo $idonotexistjusttestingerrorhandling;
$navegador = get_browser(null, true);
var_dump($navegador);
 [2013-10-15 11:54 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 23:01:27 2024 UTC