<?php
class hello {
    function __call($name, $args) {
        echo "Hello $name!\n";
    }
}

$h = new hello;
$h->sterling();
$h->rasmus();
? >

Hello sterling!
Hello rasmus!