Zend 200-550 Question Answer
What is the output of the following code?
class test {
public $value = 0;
function test() {
$this->value = 1;
}
function __construct() {
$this->value = 2;
}
}
$object = new test();
echo $object->value;
Zend 200-550 Summary
- Vendor: Zend
- Product: 200-550
- Update on: Jan 2, 2026
- Questions: 223

