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