<?php
class Foo {
	function getName() {
		return $this->name;
	}
}

print Foo::getName();
?>
