ID: 9189
Updated by: hholzgra
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Closed
Bug Type: Scripting Engine problem
Assigned To: 
Comments:

php 4 does only allow constants as class member initializers

expressions aka. calculations are not possible (while in php 3 
they were), use the constructor method instead ...

see also:
http://www.php.net/manual/en/x45905.php

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

[2001-02-09 05:15:19] [EMAIL PROTECTED]
Initilizing class var as "var $varname = intval | intval;" causes error.
Both & and | gives the same error.

I'm using sevral non-standard extentions for Japanese language support. These 
extensions should be nothing to do with this problem. (These extentions do not patch 
to core distribution)

Please let me know if you need more info.

== PHP SOURCE ==
<?php 
define('C1',1);
define('C2',2);

class foo {
        var $b = C1 | C2;
        
        function foo() {
                echo "Called Constructor<br>n";
                $this->b = C1 | C2;
        }

}

$c = new foo;
echo $c->b;

?>
==== PHP SOURCE END ======

==== ERROR MSG =====
Parse error: parse error, expecting `','' or `';'' in 
/home/httpd/httpd/html/tmp/test.html on line 6
==== ERROR MSG END =====

==== CONGIURE ====
./configure --with-apxs --disable-short-tags --enable-bcmath  --with-zlib-dir 
--enable-ftp --with-imap --with-mhash --with-mcrypt --with-pgsql --with-swf  
--enable-sysvsem --enable-sysvshm --with-zlib --enable-iconv --with-kakasi 
--enable-jstring --enable-mbregex --with-namazu --with-gd=../gd-1.8.3/ 
--with-jpeg-dir=/usr --with-xpm-dir=/usr/X11R6
===== CONGIURE END ====



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



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=9189&edit=2


-- 
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