I have this question from the Zend PHP study guide and can't find a proper explanation...

<?php
    class Magic {
        public $a = "A";
        protected $b = array("a"=>"A", "b"=>"B", "c"=>"C");
        protected $c = array(1,2,3);

        public function __get($v) {
            echo "$v,";
            return $this->b[$v];
        }
        public function __set($var, $val) {
            echo "$var: $val,";
            $this->$var = $val;
        }
    }

    $m = new Magic();
    echo $m->a.",".$m->b.",".$m->c.",";
    $m->c = "CC";
    echo $m->a.",".$m->b.",".$m->c;
?>

According to the guide, solution shall be "b,c,A,B,C,c: CC,b,c,A,B,C". I can't figure out why - maybe you do? My intention is that the first call of $m->a would lead to result "a", but that is obviously wrong...

link|improve this question
The code you have provided will output "b,c,A,B,Cmc: CC,b,c,A,B,C" (see this proof). Is it a typo or exact content of the guide? – Tadeck Dec 9 '11 at 20:29
You're right - small typo. It's correct now codepad.org/H91fpj8q – Jan Petzold Dec 9 '11 at 20:35
feedback

1 Answer

up vote 7 down vote accepted

Since __get() calls echo, some data is being outputted before the echo outside of the class gets called.

Stepping through the first line with echo, this is how it gets executed:

$m->a   "A" is concatenated
","     "," is concatenated
$m->b   "b," is echoed, "B" is concatenated
","     "," is concatenated
$m->c   "c," is echoed, "C" is concatenated
"m"     "," is concatenated

At this point, b,c, has already been echoed, and the string with the value of A,B,Cm is now displayed.

link|improve this answer
yep, that's it - I'm done for today, completely missed that! – Kamil TomÅ¡ík Dec 9 '11 at 20:22
+1 Much better explanation. – mmmshuddup Dec 9 '11 at 20:29
Awesome! Thanks a lot. However, if that one comes up in the exam... :) Thanks to y'all! – Jan Petzold Dec 9 '11 at 20:30
@JanPetzold: Not a problem. Best of luck! – Tim Cooper Dec 9 '11 at 20:30
feedback

Your Answer

 
or
required, but never shown

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