mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
11 lines
151 B
PHP
11 lines
151 B
PHP
<?php
|
|
namespace Foo\Bar;
|
|
|
|
class Foo {
|
|
function __construct() {
|
|
echo __CLASS__,"\n";
|
|
}
|
|
static function Bar() {
|
|
echo __CLASS__,"\n";
|
|
}
|
|
}
|