On Wed, 2004-08-11 at 11:14, Jed R. Brubaker wrote:
> Hi all. As the subject suggests, I am using PHP4 and am having something
> going on that I don't think should be.
> 
> Presume the following code
> class Foo {
>     function Foo () {
>         return "Bar";
>     }
> }
> $foo = new Foo;
> echo $foo;
> 
> $foo comes out as an object. Does this have to be done in two line like
> this?:
> class Foo {
>     function bar () {
>         return "Bar";
>     }
> }
> $foo = new Foo;
> $bar = $foo->bar;
> 
> Or is there a better design approach I should be reminded of or learn?
> 
> Thanks in advance!

Constructors always return a reference to the object. A return statement
is disregarded.

Have a look at http://www.php.net/language.oop.constructor in particular
a post in the comments by steffen staehle.

HTH
-- 
Regards,

David

GetAnyIdeas Web Design
[EMAIL PROTECTED]
P. 416.452.9410
F. 416.570.4529

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to