mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
11 lines
147 B
PHP
11 lines
147 B
PHP
<?php
|
|
|
|
class a {
|
|
public function test($arg = c::TESTCONSTANT) {
|
|
echo __METHOD__ . "($arg)\n";
|
|
}
|
|
|
|
static public function staticTest() {
|
|
}
|
|
}
|