mirror of
https://github.com/php/php-src.git
synced 2026-03-29 03:32:20 +02:00
11 lines
78 B
Plaintext
11 lines
78 B
Plaintext
<?
|
|
|
|
class foo {
|
|
function bar() {
|
|
print "Hey there!\n";
|
|
}
|
|
};
|
|
|
|
foo::bar();
|
|
|