|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-09-20 19:23 UTC] zeev
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Wed Jun 17 06:00:02 2026 UTC |
<HTML><HEAD><TITLE>Test PHP3 Script</TITLE> </HEAD><BODY> <?php $longstring="123456789012345"; $vals["$longstring"]=1; echo "<p>Setting array ",gettype($longstring)," element $longstring with ", $vals["$longstring"],"</p>\n"; while (list($arg,$val)=each($vals)) { echo "<p>Got array ",gettype($arg)," element $arg = $val </p>\n"; } ?> </BODY></HTML> gives :- Setting array string element 123456789012345 with 1 Got array integer element -2045911175 = 1 My configuration is Apache-1.3.1 with mod_ssl, php2 and php3.