mirror of
https://github.com/php/presentations.git
synced 2026-03-25 16:12:07 +01:00
10 lines
93 B
PHP
10 lines
93 B
PHP
<?php
|
|
class Foo {
|
|
function getName() {
|
|
return $this->name;
|
|
}
|
|
}
|
|
|
|
print Foo::getName();
|
|
?>
|