php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #63544 n/a
Submitted: 2012-11-17 06:53 UTC Modified: 2012-11-19 04:36 UTC
From: lgynove at 163 dot com Assigned:
Status: Not a bug Package: Scripting Engine problem
PHP Version: 5.4.8 OS: windows xp
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: lgynove at 163 dot com
New email:
PHP Version: OS:

 

 [2012-11-17 06:53 UTC] lgynove at 163 dot com
Description:
------------
look script

Test script:
---------------
echo "<form method=post>
<input type=hidden name='a[3333333333]' value=1>
<input type=submit value=ok>
</form>";

echo $_POST[a][3333333333];

Expected result:
----------------
1

Actual result:
--------------
null

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2012-11-17 09:50 UTC] nikic@php.net
Try var_dumping $_POST. I think you're running on a 32 bit compile, so 3333333333 is larger than the largest int. Try accessing it with $_POST[a]["3333333333"];
 [2012-11-19 04:36 UTC] aharvey@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.


 [2012-11-19 04:36 UTC] aharvey@php.net
-Status: Open +Status: Not a bug -Package: Reflection related +Package: Scripting Engine problem
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Sat May 03 13:01:30 2025 UTC