<?php
class TheNetherlands {
var $area;
function TheNetherlands($area) {
$this->area = $area;
}
}
$holland = new TheNetherlands('Holland');
echo get_class($holland), "\n";
?>
thenetherlands
TheNetherlands