Files
2003-03-23 04:35:37 +00:00

10 lines
100 B
PHP

<?php
class Bar {
static function getName() {
return $this->name;
}
}
print Bar::getName();
?>