php-windows@lists.php.net

2001-09-26 Thread Ming-Chieh Lee
xample: > > _> $a = "Hello world!"; > _> $b = &$a; > _> $b = "Hi! this is var B"; > _> echo $a; > > _> // output will be: Hi! this is var B > > _> "Ming-Chieh Lee" <[EMAIL PROTECTED]> wrote in message > _> [EMAIL

php-windows@lists.php.net

2001-09-25 Thread Ming-Chieh Lee
does anyone know what does &$this mean? I saw this on the php.net tuturial for references inside a constructor. I thought that $this is already a reference? The way it was used : class Foo { function Foo($name) { // create a reference inside the global array $globalref glo