|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-08-31 11:04 UTC] zeev
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 14:00:01 2025 UTC |
using apache 1.3.0 on a linux 2.0.35 libc5 setup. (apache configure line) ./configure --prefix=/drives/web/apache_1.3.0 \ --activate-module=src/modules/extra/mod_auth_mysql.o \ --activate-module=src/modules/extra/mod_log_mysql.o \ --activate-module=src/modules/php3/libphp3.a \ --activate-module=src/modules/standard/mod_rewrite.o \ --activate-module=src/modules/extra/mod_frontpage.o the following script gives un-expected results: <--snip--> <html> <body> <? class simple { var $somevar,$differvar; function init() { $this->$somevar=1; echo "this->somevar: ",$this->$somevar,"<BR>"; $this->$differvar=2; echo "this->somevar: ",$this->$somevar,"<BR>"; echo "this->differvar: ",$this->$differvar,"<BR>"; } } //main $tester =new simple; $tester->init(); ?> </body> </html> <--snip--> <B>expected results:</B> this->somevar: 1 this->somevar: 1 this->differvar: 2 <B>results obtained:</B> this->somevar: 1 this->somevar: 2 this->differvar: 2 hashing problem ? regex problem ? Regards, Hugh Madden