ID:               23951
 Updated by:       [EMAIL PROTECTED]
 Reported By:      sbecker at justseven dot de
 Status:           Verified
 Bug Type:         Scripting Engine problem
 Operating System: Linux 2.4
 PHP Version:      4CVS-2003-06-02 (stable)
 New Comment:

You can't use define()'s as constant scalar initializers; this
behaviour is documented in the manual somewhere.
To initialize the array that way, do it in your object constructor.


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

[2003-06-02 06:05:39] [EMAIL PROTECTED]

Interesting behavior... I could replicate this and it's definitely a
bug.

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

[2003-06-02 06:01:29] sbecker at justseven dot de

This bug is in some way the same as reported in #14064.

I got the following code:

<?php

define('FOO1', 1);
define('FOO2', 2);

class A {
    
    var $a_var = array(FOO1=>'foo1_value', FOO2=>'foo2_value');
    
}

class B extends A {
 
    var $b_var = 'foo';   
            
}

$a = new A;
$b = new B;

print_r($a);
print_r($b);

?>

Class A is doing fine but in Class B the Zend-Engine converts my
constants to strings, is that what you want?

-
Stefan

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


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

Reply via email to