<?php class hello { function __call($name, $args) { echo "Hello ".ucfirst($name)."!\n"; } } $h = new hello; $h->rusty(); $h->anton(); ?>