1
0
mirror of https://github.com/php/php-src.git synced 2026-04-05 07:02:33 +02:00
Files
archived-php-src/Zend/tests/ns_022.inc
Dmitry Stogov f32ffe9b43 Namespaces
2007-09-28 19:52:53 +00:00

7 lines
90 B
PHP
Executable File

<?php
class Test {
static function foo() {
echo __CLASS__,"::",__FUNCTION__,"\n";
}
}