Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam 200-550 topic 1 question 40 discussion

Actual exam question from Zend's 200-550
Question #: 40
Topic #: 1
[All 200-550 Questions]

Consider the following code. What change must be made to the class for the code to work as written? class Magic { protected $v = array("a" => 1, "b" => 2, "c" => 3); public function __get($v) { return $this->v[$v];
}
}
$m = new Magic();
$m->d[] = 4;
echo $m->d[0];

  • A. Nothing, this code works just fine.
  • B. Add __set method doing $this->v[$var] = $val
  • C. Rewrite __get as: public function __get(&$v)
  • D. Rewrite __get as: public function &__get($v)
  • E. Make __get method static
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
ZhukovPeter
4 years, 4 months ago
<?php class Magic { protected $v = array("a" => 1, "b" => 2, "c" => 3); public function & __get($v) { return $this->v[$v]; } } $m = new Magic(); $m->d[] = 4; echo $m->d[0];
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...