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

	<list marginleft="3em" fontsize="3em">
		<bullet>Catch method calls</bullet>
	</list>

	<break />

    <example fontsize="1.5em"><![CDATA[<?php
class hello {
    function __call($name, $args) {
        echo "Hello $name!\n";
    }
}

$h = new hello;
$h->sterling();
$h->rasmus();
? >]]></example>

	<break />

    <example fontsize="1.5em"><![CDATA[Hello sterling!
Hello rasmus!]]></example>
</slide>
