ID: 49539
User updated by: info at daniel-marschall dot de
Reported By: info at daniel-marschall dot de
Status: Open
Bug Type: *General Issues
Operating System: Linux
-PHP Version: 5.2.10
+PHP Version: 5.2.0
New Comment:
(I mean "IIJJ", of course.)
Previous Comments:
------------------------------------------------------------------------
[2009-09-13 03:50:26] info at daniel-marschall dot de
Description:
------------
I believe I found an error in PHP 5.2.0-8+etch15 (cli)
<?php
$quad = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
echo $quad{8}; // I
echo $quad{08}; // A <- ERROR
echo $quad{9}; // K
echo $quad{09}; // A <- ERROR
?>
The other values {00} to {07} are working as expected. Why doesn'T {08}
and {09} work? They should behave like {8} and {9} since 08 == 8 and 09
== 9.
Reproduce code:
---------------
<?php
$quad = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
echo $quad{8}; // I
echo $quad{08}; // A <- ERROR
echo $quad{9}; // K
echo $quad{09}; // A <- ERROR
?>
Expected result:
----------------
Output: IIKK
Actual result:
--------------
Output: IAKA
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=49539&edit=1