mirror of
https://github.com/php/php-src.git
synced 2024-12-01 05:43:38 +08:00
7 lines
90 B
PHP
7 lines
90 B
PHP
<?php
|
|
class Test {
|
|
static function foo() {
|
|
echo __CLASS__,"::",__FUNCTION__,"\n";
|
|
}
|
|
}
|