mirror of
https://github.com/php/presentations.git
synced 2026-03-24 07:32:11 +01:00
10 lines
100 B
PHP
10 lines
100 B
PHP
<?php
|
|
class Bar {
|
|
static function getName() {
|
|
return $this->name;
|
|
}
|
|
}
|
|
|
|
print Bar::getName();
|
|
?>
|