ID: 10467
Updated by: zeev
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Scripting Engine problem
Operating System: Solaris
PHP Version: 4.0.4pl1
New Comment:

This is now fixed in CVS, and will be a part of 4.0.7.  Thanks for the reproducing 
script!

Previous Comments:
------------------------------------------------------------------------

[2001-04-23 17:19:49] [EMAIL PROTECTED]

The following script doesn't work correctly.  It should
print "My Message: Hello World\nArray ( [1] => Hello [2] =>
World )".  Instead it prints "My Message: \nArray ( [FIRST]
=> Hello [SECOND] => World )".

<?
  define("FIRST", 1);
  define("SECOND", 2);

  static $myArray = array(FIRST => "Hello", SECOND => "World");

  print("My Message:". $myArray[FIRST] ." ".
$myArray[SECOND] ."<BR>\n");
  print_r($myArray);
 ?>
   

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=10467&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to