<?xml version="1.0" encoding="ISO-8859-1"?>
<slide fontsize="6em">
	<title>get_class()</title>

    <example fontsize="1.3em"><![CDATA[<?php
	class TheNetherlands {
		var $area;
		function TheNetherlands($area) {
			$this->area = $area;
		}
	}

	$holland = new TheNetherlands('Holland');

	echo get_class($holland), "\n";
?>]]></example>

<break lines="2"/>
	<blurb fontsize="3.5em">PHP 4:</blurb>
    <example fontsize="1.3em"><![CDATA[thenetherlands]]></example>

<break lines="2"/>
	<blurb fontsize="3.5em">PHP 5:</blurb>
    <example fontsize="1.3em"><![CDATA[TheNetherlands]]></example>

<break lines="2"/>
	<blurb fontsize="3.5">
		The same is true for get_parent_class() and get_class_methods().
	</blurb>
</slide>
