You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
257 B

<?php
namespace a;
const const_a=1; //常量a
function func_a()
{
echo __FUNCTION__,"\n";
}
class cls_a
{
static function func()
{
echo __CLASS__.'-'.__FUNCTION__.'\n';
}
}
?>