<?php
class Country {
function set_name($name) {
$this->name = $name;
}
}
$jurop = new Country;
$dutchieland = new Country;
$dutchieland->set_name('The Netherlands');
echo (int) $jurop, "\n";
echo (int) $dutchieland, "\n";
?>
0
1