php-developer-list | 2000111
Date: 11/14/00
- Next message: christoph.steinmann <email protected>: "[PHP-DEV] PHP 4.0 Bug #7666 Updated: PHP4 doesn't read php.ini with NT4/IIS"
- Previous message: ciukred <email protected>: "[PHP-DEV] PHP 4.0 Bug #7809: ld: 0711-317 ERROR: Undefined symbol: .alloca"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: bram <email protected>
Operating system: Windows 98
PHP version: 4.0.2
PHP Bug Type: Arrays related
Bug description: Wrong array-index interpretation
The following script acts strange (no crash :).
<?
$some[1] = "ONE";
$some[02] = "TWO";
$some[07] = "SEVEN";
$some[08] = "EIGHT";
$some[09] = "NINE";
Print $some[1];
Print $some[2];
Print $some[7];
Print $some[8];
Print $some[09];
?>
I can't realy understand why $some[7] is correctly interpreted and $some[8] isn't. (in other words. Print $some[7] shows SEVEN and Print $some[8] doesn't print anything at all.
I would be really pleased if you could respond in anyway about this thingy.
Greets,
Bram van Leur (NL)
-- Edit Bug report at: http://bugs.php.net/?id=7810&edit=1-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: christoph.steinmann <email protected>: "[PHP-DEV] PHP 4.0 Bug #7666 Updated: PHP4 doesn't read php.ini with NT4/IIS"
- Previous message: ciukred <email protected>: "[PHP-DEV] PHP 4.0 Bug #7809: ld: 0711-317 ERROR: Undefined symbol: .alloca"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

