mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
12 lines
151 B
PHP
12 lines
151 B
PHP
<?php
|
|
namespace Foo\Bar;
|
|
|
|
class Foo {
|
|
function __construct() {
|
|
echo __CLASS__,"\n";
|
|
}
|
|
static function Bar() {
|
|
echo __CLASS__,"\n";
|
|
}
|
|
}
|