mirror of
https://github.com/php/php-src.git
synced 2025-01-07 19:44:02 +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";
|
|
}
|
|
}
|