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