mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
10 lines
77 B
Plaintext
10 lines
77 B
Plaintext
|
<?
|
||
|
class foo {
|
||
|
function bar() {
|
||
|
print "Hey there!\n";
|
||
|
}
|
||
|
};
|
||
|
|
||
|
foo::bar();
|
||
|
|