I was checking joomla 1.6 index.php and I found the following code at the last line

echo $app;

this prints the entire page contents.

I just printed out the contents in this object using print_r() and I got the following details

JSite Object
(
    [template:JSite:private] => stdClass Object
        (
            [id] => 6
            [home] => 1
            [template] => beez5
            [params] => JRegistry Object
                (
                    [data:protected] => stdClass Object
                        (
                            [wrapperSmall] => 53
                            [wrapperLarge] => 72
                            [logo] => images/sampledata/fruitshop/fruits.gif
                            [sitetitle] => Matuna Market 
                            [sitedescription] => Fruit Shop Sample Site
                            [navposition] => left
                            [html5] => 0
                        )

                )

        )

    [_language_filter:JSite:private] => 
    [_detect_browser:JSite:private] => 
    [_clientId:protected] => 0
    [_messageQueue:protected] => Array
        (
        )

    [_name:protected] => site
    [scope] => 
    [requestTime] => 2011-10-17 17:23
    [startTime] => 1318872200.5365
    [_errors:protected] => Array
        (
        )

)

so how echo $app display all the site contents, it doesn't contains any HTML contents in the object.

Thank you very much

link|improve this question

65% accept rate
feedback

2 Answers

up vote 4 down vote accepted

It declares the magic method __toString() in the class.

If this function is declared in a class, the return value of it will be used when the object is casted to a string.

Simple example: http://codepad.org/UmZUQA3v

link|improve this answer
Shoot, you beat me by 43 seconds. – Cyclone Oct 19 '11 at 16:52
thanks a lot dude :) – John K Oct 19 '11 at 17:06
feedback

$app is an object, and print_r accesses its values in different ways from echo. When echo is called, it also implicitly calls the magic __toString method. That has been defined such that it returns a string with the page contents, given the values stored inside of the object. print_r will give you those values, but not the __toString representation.

link|improve this answer
Thanks a lot :) – John K Oct 19 '11 at 17:08
+1 for the same content ;) But next time type a litte bit faster! – ComFreek Oct 20 '11 at 13:28
@ComFreek: Haha, thanks! I was trying to put as much info in as I could so I wasn't just doing one of those "fastest gun in the west" type things. Both answers solve it nicely though! – Cyclone Oct 20 '11 at 13:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.