<?php
class Country {
var $area;
function Country($area) {
$this->area = $area;
}
}
$deutschland = new Country('West Europe');
$die_schweiz = new Country('West Europe');
if ($deutschland == $die_schweiz) {
echo "Deutschland ist die Schweiz.\n";
}
if ($deutschland === $die_schweiz) {
echo "Deutschland ist die Schweiz.\n";
}
?>