<?php class Value { private $value; public function __construct($value) { $this->value = $value; } } var_dump(new Value(0) == new Value(false));
You have javascript disabled. You will not be able to edit any code.